Can we have the ability for blocks to use multiple geometries and textures?
Here is an example that I have:
"minecraft:geometry": {
"geo1": "geometry.geo1",
"geo2": "geometry.geo2"
},
"minecraft:material_instances": {
"tex1": {
"texture": "tex1",
"render_method": "alpha_test",
"sides": "*"
},
"tex2": {
"texture": "tex2",
"render_method": "opaque",
"sides": [
"up",
"north"
]
}
}
These can be toggled through queries and components, and all counts as the same block. For example:
Queries:
query.toggle_geometry('geo1')
query.toggle_texture('tex2')
Components:
"minecraft:toggle_geometries": [
"geo2"
],
"minecraft:toggle_textures": [
"tex1"
]
These are things that I find would be very important for making blocks more interactable.
Please sign in to leave a comment.
0 Comments