mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-23 13:36:18 +00:00
34 lines
579 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|