1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-23 13:36:18 +00:00
bedrock-samples/resource_pack/entity/salmon.entity.json
Mike Ammerlaan e304be6ab8 v1.20.80.5
2024-04-23 09:20:49 -07:00

39 lines
1.0 KiB
JSON

{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:salmon",
"materials": {
"default": "salmon"
},
"textures": {
"default": "textures/entity/fish/salmon"
},
"geometry": {
"default": "geometry.salmon"
},
"scripts": {
"pre_animation": [
"variable.ZRot = !query.is_in_water ? Math.cos((query.time_stamp + query.frame_alpha) * 14.32) * 90 : 0.0;",
"variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"
]
},
"animations": {
"flop": "animation.salmon.flop",
"swim": "animation.salmon.swim"
},
"animation_controllers": [
{
"general": "controller.animation.fish.general"
}
],
"render_controllers": [
"controller.render.salmon"
],
"spawn_egg": {
"texture": "spawn_egg",
"texture_index": 47
}
}
}
}