Create/src/main/resources/assets/create/models/block/content_observer/block.json
PepperCode1 8bf42ffa6f Fixes and tweaks
- Add #create:blaze_burner_capturable entity type tag
- Make it so blocks that do not implement IWrenchable and that are
tagged can only be picked up with a wrench while sneaking
- Fix AnalogLeverInstance not rendering indicator on 1.18 and 1.19 and
rendering indicator at wrong place in 1.20
- Change AirCurrent entity distance calculation to fix issues with some
items not being processed
- Simplify AirCurrent max VoxelShape depth calculation by using min and
max instead of raycasting
- Fix pipe cobblestone generation
- Fix vertical smart observers outputting redstone signal from wrong
sides
- Fix smart observer using wrong bottom texture
2023-10-28 13:58:40 -07:00

26 lines
763 B
JSON

{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "create:block/smart_observer",
"2": "create:block/smart_observer_front",
"4": "create:block/smart_observer_top",
"6": "create:block/smart_observer_bottom",
"7": "create:block/smart_observer_side",
"particle": "create:block/smart_observer"
},
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#2"},
"east": {"uv": [0, 0, 16, 16], "texture": "#7"},
"south": {"uv": [0, 0, 16, 16], "texture": "#0"},
"west": {"uv": [0, 0, 16, 16], "texture": "#7"},
"up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#4"},
"down": {"uv": [0, 0, 16, 16], "texture": "#6"}
}
}
]
}