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

54 lines
968 B
JSON

{
"format_version" : "1.10.0",
"animation_controllers" : {
"controller.animation.enderman.base_pose" : {
"initial_state" : "default",
"states" : {
"default" : {
"animations" : [ "base_pose", "arms_legs" ]
}
}
},
"controller.animation.enderman.carrying" : {
"initial_state" : "default",
"states" : {
"carry" : {
"animations" : [ "carrying" ],
"transitions" : [
{
"default" : "!query.is_carrying_block"
}
]
},
"default" : {
"transitions" : [
{
"carry" : "query.is_carrying_block"
}
]
}
}
},
"controller.animation.enderman.scary_face" : {
"initial_state" : "default",
"states" : {
"default" : {
"transitions" : [
{
"scary" : "query.is_angry"
}
]
},
"scary" : {
"animations" : [ "scary_face" ],
"transitions" : [
{
"default" : "!query.is_angry"
}
]
}
}
}
}
}