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/agent.animation_controllers.json
Mike Ammerlaan 67b754063e v1.20.10.1
2023-07-11 09:11:33 -07:00

38 lines
819 B
JSON

{
"format_version" : "1.10.0",
"animation_controllers" : {
"controller.animation.agent.move" : {
"initial_state" : "moving",
"states" : {
"moving" : {
"animations" : [ "move" ],
"transitions" : [
{
"swinging_arms": "variable.agent.anim_state == 2"
},
{
"shrug": "variable.agent.anim_state == 3"
}
]
},
"swinging_arms": {
"animations": [ "swing_arms" ],
"transitions": [
{
"moving": "variable.agent.anim_state == 1"
}
]
},
"shrug": {
"animations": [ "shrug" ],
"transitions": [
{
"moving": "variable.agent.anim_state == 1"
}
]
}
}
}
}
}