vanilla tweaks redstone utilities

This commit is contained in:
David Allemang
2026-07-04 11:10:04 -04:00
parent 8249c4dd52
commit 7b0c4e4554
313 changed files with 3873 additions and 1172 deletions

View File

@@ -1,23 +1,25 @@
{
"parent": "block/block",
"textures": {
"bottom": "block/observer_back",
"side": "block/observer_side",
"top": "block/observer_top",
"front": "block/observer_front",
"particle": "block/observer_front"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" },
"up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "up" },
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#front", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" }
}
}
]
}
"credit": "Created by Stridey",
"parent": "block/block",
"textures": {
"bottom": "block/observer_back",
"side": "block/observer_side",
"top": "block/observer_top",
"particle": "block/observer_front",
"front": "block/observer_front"
},
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#front", "cullface": "north"},
"east": {"uv": [16, 16, 0, 0], "rotation": 180, "texture": "#side", "cullface": "east"},
"south": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "south"},
"west": {"uv": [0, 16, 16, 0], "rotation": 180, "texture": "#side", "cullface": "west"},
"up": {"uv": [0, 16, 16, 0], "texture": "#top", "cullface": "up"},
"down": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "down"}
}
}
]
}