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/turtle.animation_controllers.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

46 lines
953 B
JSON

{
"format_version" : "1.10.0",
"animation_controllers" : {
"controller.animation.turtle.general" : {
"initial_state" : "default",
"states" : {
"default" : {
"animations" : [ "general" ]
}
}
},
"controller.animation.turtle.move" : {
"initial_state" : "default",
"states" : {
"default" : {
"animations" : [ "look_at_target" ],
"transitions" : [
{
"swimming" : "query.is_in_water && !query.is_on_ground"
},
{
"walking" : "!query.is_in_water && query.is_on_ground"
}
]
},
"swimming" : {
"animations" : [ "move", "look_at_target" ],
"transitions" : [
{
"walking" : "!query.is_in_water && query.is_on_ground"
}
]
},
"walking" : {
"animations" : [ "ground_move", "look_at_target" ],
"transitions" : [
{
"swimming" : "query.is_in_water && !query.is_on_ground"
}
]
}
}
}
}
}