1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-27 04:38:56 +00:00
bedrock-samples/resource_pack/render_controllers/crossbow.render_controllers.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

33 lines
1.0 KiB
JSON

{
"format_version": "1.10.0",
"render_controllers": {
"controller.render.crossbow": {
"arrays": {
"textures": {
"array.crossbow_texture_frames": [
"texture.default",
"texture.crossbow_pulling_0",
"texture.crossbow_pulling_1",
"texture.crossbow_pulling_2",
"texture.crossbow_arrow",
"texture.crossbow_rocket"
]
},
"geometries": {
"array.crossbow_geo_frames": [
"geometry.default",
"geometry.crossbow_pulling_0",
"geometry.crossbow_pulling_1",
"geometry.crossbow_pulling_2",
"geometry.crossbow_arrow",
"geometry.crossbow_rocket"
]
}
},
"geometry": "array.crossbow_geo_frames[query.get_animation_frame]",
"materials": [ { "*": "variable.is_enchanted ? material.enchanted : material.default" } ],
"textures": [ "array.crossbow_texture_frames[query.get_animation_frame]", "texture.enchanted" ]
}
}
}