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/fox.entity.json
Mike Ammerlaan e304be6ab8 v1.20.80.5
2024-04-23 09:20:49 -07:00

47 lines
1.2 KiB
JSON

{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:fox",
"materials": {
"default": "fox"
},
"textures": {
"red": "textures/entity/fox/fox",
"arctic": "textures/entity/fox/arctic_fox"
},
"geometry": {
"default": "geometry.fox"
},
"animations": {
"walk": "animation.quadruped.walk",
"look_at_target": "animation.common.look_at_target",
"baby_transform": "animation.fox.baby_transform",
"crouch": "animation.fox.crouch",
"sleep": "animation.fox.sleep",
"setup": "animation.fox.setup",
"sit": "animation.fox.sit",
"wiggle": "animation.fox.wiggle",
"stuck": "animation.fox.stuck",
"pounce": "animation.fox.pounce",
"move": "controller.animation.fox.move"
},
"scripts": {
"animate": [
"setup",
{
"baby_transform": "query.is_baby"
},
"move"
]
},
"render_controllers": [
"controller.render.fox"
],
"spawn_egg": {
"texture": "spawn_egg",
"texture_index": 55
}
}
}
}