mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-23 13:36:18 +00:00
a3b394c507
Initial layout
119 lines
2.2 KiB
JSON
119 lines
2.2 KiB
JSON
{
|
|
"format_version" : "1.10.0",
|
|
"animation_controllers" : {
|
|
"controller.animation.wolf.angry" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"animations" : [ "wolf_angry" ]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.baby_scaling" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"baby" : {
|
|
"animations" : [ "wolf_baby_scaling" ],
|
|
"transitions" : [
|
|
{
|
|
"default" : "!query.is_baby"
|
|
}
|
|
]
|
|
},
|
|
"default" : {
|
|
"transitions" : [
|
|
{
|
|
"baby" : "query.is_baby"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.head_rot_z" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"transitions" : [
|
|
{
|
|
"rot" : "query.is_interested || query.is_shaking_wetness"
|
|
}
|
|
]
|
|
},
|
|
"rot" : {
|
|
"animations" : [ "wolf_head_rot_z" ],
|
|
"transitions" : [
|
|
{
|
|
"default" : "!query.is_interested && !query.is_shaking_wetness"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.look_at" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"animations" : [ "wolf_look_at" ]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.setup" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"animations" : [ "wolf_setup" ]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.shaking" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"transitions" : [
|
|
{
|
|
"shaking" : "query.is_shaking_wetness"
|
|
}
|
|
]
|
|
},
|
|
"shaking" : {
|
|
"animations" : [ "wolf_shaking" ],
|
|
"transitions" : [
|
|
{
|
|
"default" : "!query.is_shaking_wetness"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.sitting" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"animations" : [ "wolf_leg_default" ],
|
|
"transitions" : [
|
|
{
|
|
"sitting" : "query.is_sitting"
|
|
}
|
|
]
|
|
},
|
|
"sitting" : {
|
|
"animations" : [ "wolf_sitting" ],
|
|
"transitions" : [
|
|
{
|
|
"default" : "!query.is_sitting"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.wolf.tail_default" : {
|
|
"initial_state" : "default",
|
|
"states" : {
|
|
"default" : {
|
|
"animations" : [ "wolf_tail_default" ]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|