1
0
Fork 0

Make wolfs turn thier heads

This commit is contained in:
epCode 2022-06-09 08:39:32 -07:00
parent 2909de882a
commit daa8a5c3ea
2 changed files with 9 additions and 1 deletions

View File

@ -24,6 +24,14 @@ local wolf = {
textures = { textures = {
{"mobs_mc_wolf.png"}, {"mobs_mc_wolf.png"},
}, },
--EXPERIMENTAL
head_swivel = "Head_Control",
bone_eye_height = 1.2,
head_eye_height = 1.1,
horrizonatal_head_height=0,
curiosity = 10,
head_yaw="z",
-------------------------------
visual_size = {x=3, y=3}, visual_size = {x=3, y=3},
makes_footstep_sound = true, makes_footstep_sound = true,
sounds = { sounds = {
@ -73,7 +81,7 @@ local wolf = {
end, end,
animation = { animation = {
speed_normal = 50, speed_run = 100, speed_normal = 50, speed_run = 100,
stand_start = 40, stand_end = 45, stand_start = 1, stand_end = 1,
walk_start = 0, walk_end = 40, walk_start = 0, walk_end = 40,
run_start = 0, run_end = 40, run_start = 0, run_end = 40,
}, },