fix(heyhe): correct egg spawn, fix taming, skinny model, wonky eyes, persistent
All checks were successful
Deploy Addons / deploy (push) Successful in 14s

- heyhe_egg: rebuild spawn mechanism with component groups (spawn_entity/die
  can't live in event sequences — follow dragon_egg pattern exactly)
- heyhe_chicken: move interact to base components so taming always works
  regardless of spawn method; add persistent to stop vanishing
- Geometry: skinny tall body, thin neck, proper UV coordinates throughout
- Texture: fill whole atlas white first (no dark gaps), matched UV regions,
  wonky asymmetric eyes (one big+high, one small+low)
- Animation: neck peck 3x per cycle at 22deg, body sway on walk, wing flutter

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 09:37:25 +01:00
parent 56ed7d76ee
commit 86950012e9
5 changed files with 307 additions and 286 deletions

View File

@@ -4,23 +4,32 @@
"animation.heyhe_chicken.idle": {
"loop": true,
"animation_length": 2.0,
"animation_length": 1.2,
"bones": {
"body": {
"position": {
"0.0": [0, 0, 0],
"1.0": [0, 0.4, 0],
"2.0": [0, 0, 0]
"0.6": [0, 0.3, 0],
"1.2": [0, 0, 0]
}
},
"neck": {
"rotation": {
"0.0": [0, 0, 0],
"0.2": [22, 0, 0],
"0.35": [0, 0, 0],
"0.55": [22, 0, 0],
"0.7": [0, 0, 0],
"0.9": [22, 0, 0],
"1.05": [0, 0, 0],
"1.2": [0, 0, 0]
}
},
"head": {
"rotation": {
"0.0": [0, 0, 0],
"0.4": [10, 0, 0],
"0.8": [0, 0, 0],
"1.4": [10, 0, 0],
"1.8": [0, 0, 0],
"2.0": [0, 0, 0]
"0.0": [0, 5, 0],
"0.6": [0, -5, 0],
"1.2": [0, 5, 0]
}
}
}
@@ -28,43 +37,57 @@
"animation.heyhe_chicken.walk": {
"loop": true,
"animation_length": 0.8,
"animation_length": 0.7,
"bones": {
"body": {
"rotation": {
"0.0": [0, 0, 4],
"0.2": [0, 0, 0],
"0.4": [0, 0, -4],
"0.6": [0, 0, 0],
"0.8": [0, 0, 4]
"0.0": [0, 0, 5],
"0.175":[0, 0, 0],
"0.35": [0, 0, -5],
"0.525":[0, 0, 0],
"0.7": [0, 0, 5]
}
},
"head": {
"rotation": {
"0.0": [0, 0, -4],
"0.2": [0, 0, 0],
"0.4": [0, 0, 4],
"0.6": [0, 0, 0],
"0.8": [0, 0, -4]
},
"neck": {
"position": {
"0.0": [0, 0, 0.5],
"0.4": [0, 0, -0.5],
"0.8": [0, 0, 0.5]
"0.35": [0, 0, -0.5],
"0.7": [0, 0, 0.5]
},
"rotation": {
"0.0": [10, 0, 0],
"0.2": [-5, 0, 0],
"0.35": [10, 0, 0],
"0.55": [-5, 0, 0],
"0.7": [10, 0, 0]
}
},
"leg_left": {
"rotation": {
"0.0": [ 15, 0, 0],
"0.4": [-15, 0, 0],
"0.8": [ 15, 0, 0]
"0.0": [ 20, 0, 0],
"0.35": [-20, 0, 0],
"0.7": [ 20, 0, 0]
}
},
"leg_right": {
"rotation": {
"0.0": [-15, 0, 0],
"0.4": [ 15, 0, 0],
"0.8": [-15, 0, 0]
"0.0": [-20, 0, 0],
"0.35": [ 20, 0, 0],
"0.7": [-20, 0, 0]
}
},
"wing_left": {
"rotation": {
"0.0": [0, 0, -5],
"0.35": [0, 0, -12],
"0.7": [0, 0, -5]
}
},
"wing_right": {
"rotation": {
"0.0": [0, 0, 5],
"0.35": [0, 0, 12],
"0.7": [0, 0, 5]
}
}
}
@@ -72,40 +95,40 @@
"animation.heyhe_chicken.sit": {
"loop": true,
"animation_length": 1.6,
"animation_length": 0.8,
"bones": {
"body": {
"position": {
"0.0": [0, -2.5, 0],
"0.8": [0, -2.5, 0]
},
"position": { "0.0": [0, -2, 0] },
"rotation": { "0.0": [8, 0, 0] }
},
"neck": {
"rotation": {
"0.0": [5, 0, 0],
"0.8": [5, 0, 0]
"0.0": [0, 0, 0],
"0.2": [18, 0, 0],
"0.4": [0, 0, 0],
"0.6": [18, 0, 0],
"0.8": [0, 0, 0]
}
},
"wing_left": {
"rotation": {
"0.0": [0, 0, -10],
"0.8": [0, 0, -18],
"1.6": [0, 0, -10]
"0.0": [0, 0, -15],
"0.4": [0, 0, -22],
"0.8": [0, 0, -15]
}
},
"wing_right": {
"rotation": {
"0.0": [0, 0, 10],
"0.8": [0, 0, 18],
"1.6": [0, 0, 10]
"0.0": [0, 0, 15],
"0.4": [0, 0, 22],
"0.8": [0, 0, 15]
}
},
"head": {
"rotation": {
"0.0": [ 0, 0, 0],
"0.4": [12, 0, 0],
"0.8": [ 0, 0, 0],
"1.2": [12, 0, 0],
"1.6": [ 0, 0, 0]
}
"leg_left": {
"rotation": { "0.0": [30, 0, 0] }
},
"leg_right": {
"rotation": { "0.0": [30, 0, 0] }
}
}
}