resource pack: vanilla + redstone tweaks

This commit is contained in:
2026-07-16 21:26:00 -04:00
commit 83079ed61f
13462 changed files with 134623 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
{
"targets": {
"swap": {}
},
"passes": [
{
"vertex_shader": "minecraft:core/screenquad",
"fragment_shader": "minecraft:post/invert",
"inputs": [
{
"sampler_name": "In",
"target": "minecraft:main"
}
],
"output": "swap",
"uniforms": {
"InvertConfig": [
{
"name": "InverseAmount",
"type": "float",
"value": 0.8
}
]
}
},
{
"vertex_shader": "minecraft:core/screenquad",
"fragment_shader": "minecraft:post/blit",
"inputs": [
{
"sampler_name": "In",
"target": "swap"
}
],
"uniforms": {
"BlitConfig": [
{
"name": "ColorModulate",
"type": "vec4",
"value": [ 1.0, 1.0, 1.0, 1.0 ]
}
]
},
"output": "minecraft:main"
}
]
}