mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-23 13:36:18 +00:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"format_version": "1.10.0",
|
|
"animation_controllers": {
|
|
"controller.animation.bee.drip": {
|
|
"initial_state": "default",
|
|
"states": {
|
|
"default": {
|
|
"transitions": [
|
|
{
|
|
"dripping": "query.property('minecraft:has_nectar')"
|
|
}
|
|
]
|
|
},
|
|
"dripping": {
|
|
"particle_effects": [
|
|
{
|
|
"effect": "nectar_dripping"
|
|
}
|
|
],
|
|
"transitions": [
|
|
{
|
|
"default": "!query.property('minecraft:has_nectar')"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.bee.sting": {
|
|
"initial_state": "default",
|
|
"states": {
|
|
"default": {
|
|
"animations": [ "bee_sting" ]
|
|
}
|
|
}
|
|
},
|
|
"controller.animation.bee.root": {
|
|
"initial_state": "default",
|
|
"states": {
|
|
"default": {
|
|
"animations": [
|
|
"flying",
|
|
"drip",
|
|
"bee_fly_bobbing",
|
|
"controller_bee_sting"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|