1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-23 17:34:18 +00:00
Files
bedrock-samples/resource_pack/entity/goat.entity.json
2025-02-19 09:06:29 -08:00

45 lines
1.3 KiB
JSON

{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:goat",
"materials": {
"default": "goat"
},
"textures": {
"default": "textures/entity/goat/goat"
},
"geometry": {
"default": "geometry.goat"
},
"spawn_egg": {
"texture": "spawn_egg_goat"
},
"scripts": {
"pre_animation": [
"variable.tcos_right_side = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;",
"variable.tcos_left_side = -variable.tcos_right_side;",
"variable.attack_head_rot = Math.sin(variable.attack_time * 180.0) * -37.3;",
"variable.ram_head_rot = Math.sin(variable.should_bow_head * 90.0) * 37.3;"
],
"animate": [
"walk",
"look_at_target",
{
"attack": "variable.has_target && variable.attack_time >= 0.0"
},
"ram_attack"
]
},
"animations": {
"walk": "animation.goat.walk",
"look_at_target": "animation.goat.look_at_target",
"attack": "animation.goat.attack",
"ram_attack": "animation.goat.ram_attack"
},
"render_controllers": [
"controller.render.goat"
]
}
}
}