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/bee.animation_controllers.json
Mike Ammerlaan 311d63c934 v1.19.50.2
2022-11-29 09:27:52 -08:00

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"
]
}
}
}
}
}