mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-04-10 19:10:05 +00:00
30 lines
676 B
JSON
30 lines
676 B
JSON
{
|
|
"format_version": "1.8.0",
|
|
"render_controllers": {
|
|
"controller.render.chicken.v2": {
|
|
"arrays": {
|
|
"textures": {
|
|
"Array.textures": [
|
|
"Texture.default",
|
|
"Texture.warm",
|
|
"Texture.cold"
|
|
]
|
|
},
|
|
"geometries": {
|
|
"Array.geos": [
|
|
"Geometry.default",
|
|
"Geometry.warm",
|
|
"Geometry.cold"
|
|
]
|
|
}
|
|
},
|
|
"geometry": "Array.geos[v.index]",
|
|
"materials": [
|
|
{ "*": "v.is_cold ? Material.cold : Material.default" },
|
|
{ "leg*": "Material.legs" }
|
|
],
|
|
"textures": [ "Array.textures[v.index]" ]
|
|
}
|
|
}
|
|
}
|