1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-23 13:36:18 +00:00
bedrock-samples/resource_pack/animation_controllers/vex.animation_controllers.json
Mike Ammerlaan 311d63c934 v1.19.50.2
2022-11-29 09:27:52 -08:00

34 lines
579 B
JSON

{
"format_version" : "1.10.0",
"animation_controllers" : {
"controller.animation.vex.idle" : {
"initial_state" : "default",
"states" : {
"default" : {
"animations" : [ "vex_idle" ]
}
}
},
"controller.animation.vex.charge" : {
"initial_state" : "default",
"states" : {
"default" : {
"transitions" : [
{
"charging" : "query.is_charging"
}
]
},
"charging" : {
"animations" : [ "vex_charge" ],
"transitions" : [
{
"default" : "!query.is_charging"
}
]
}
}
}
}
}