fix sea wyvern head offset

This commit is contained in:
flo666 2023-08-03 19:25:55 +02:00
parent 8abb93040c
commit 9bd5003d31
2 changed files with 5 additions and 5 deletions

View File

@ -313,11 +313,11 @@
),
(SeaWyvern, Male): (
head: (
offset: (-3.5, 1.0, 3.0),
offset: (-3.5, -1.0, -1.0),
central: ("npc.wyvern_sea.male.head"),
),
beak: (
offset: (-3.5, 4.0, -4.0),
offset: (-3.5, 2.0, -6.0),
central: ("npc.wyvern_sea.male.beak"),
),
neck: (
@ -339,11 +339,11 @@
),
(SeaWyvern, Female): (
head: (
offset: (-3.5, 1.0, 3.0),
offset: (-3.5, -1.0, -1.0),
central: ("npc.wyvern_sea.male.head"),
),
beak: (
offset: (-3.5, 4.0, -4.0),
offset: (-3.5, 2.0, -6.0),
central: ("npc.wyvern_sea.male.beak"),
),
neck: (

View File

@ -201,7 +201,7 @@ impl<'a> From<&'a Body> for SkeletonAttr {
(FlameWyvern, _) => (10.0, -1.5),
(CloudWyvern, _) => (10.0, -1.5),
(FrostWyvern, _) => (10.0, -1.5),
(SeaWyvern, _) => (10.0, -1.5),
(SeaWyvern, _) => (10.0, 2.5),
(WealdWyvern, _) => (10.0, -1.5),
},
beak: match (body.species, body.body_type) {