From 8505fc7b0279e6db78e6b4d23b9eeb3ddb26cbd0 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 10 May 2020 17:46:26 -0400 Subject: [PATCH] fix swim bug --- voxygen/src/anim/character/swim.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/voxygen/src/anim/character/swim.rs b/voxygen/src/anim/character/swim.rs index 60477596a9..655b3ca9ec 100644 --- a/voxygen/src/anim/character/swim.rs +++ b/voxygen/src/anim/character/swim.rs @@ -59,9 +59,11 @@ impl Animation for SwimAnimation { skeleton_attr.chest.1 + short * 1.3, ); next.chest.ori = Quaternion::rotation_z(short * 0.4); + next.chest.scale = Vec3::one(); next.belt.offset = Vec3::new(0.0, skeleton_attr.belt.0, skeleton_attr.belt.1); next.belt.ori = Quaternion::rotation_z(short * 0.30); + next.belt.scale = Vec3::one(); next.back.offset = Vec3::new(0.0, skeleton_attr.back.0, skeleton_attr.back.1); next.back.ori = Quaternion::rotation_z(0.0); @@ -69,6 +71,7 @@ impl Animation for SwimAnimation { next.shorts.offset = Vec3::new(0.0, skeleton_attr.shorts.0, skeleton_attr.shorts.1); next.shorts.ori = Quaternion::rotation_z(short * 0.5); + next.shorts.scale = Vec3::one(); next.l_hand.offset = Vec3::new( -skeleton_attr.hand.0, @@ -76,6 +79,7 @@ impl Animation for SwimAnimation { skeleton_attr.hand.2 + foot * -3.0, ); next.l_hand.ori = Quaternion::rotation_x(0.8 + foot * -0.6) * Quaternion::rotation_y(0.2); + next.l_hand.scale = Vec3::one(); next.r_hand.offset = Vec3::new( skeleton_attr.hand.0, @@ -83,6 +87,7 @@ impl Animation for SwimAnimation { skeleton_attr.hand.2 + foot * 3.0, ); next.r_hand.ori = Quaternion::rotation_x(0.8 + foot * 0.6) * Quaternion::rotation_y(-0.2); + next.r_hand.scale = Vec3::one(); next.l_foot.offset = Vec3::new( -skeleton_attr.foot.0, @@ -90,6 +95,7 @@ impl Animation for SwimAnimation { -5.0 + skeleton_attr.foot.2 + foot * 6.5, ); next.l_foot.ori = Quaternion::rotation_x(-1.40 + foot * 0.6); + next.l_foot.scale = Vec3::one(); next.r_foot.offset = Vec3::new( skeleton_attr.foot.0, @@ -97,6 +103,7 @@ impl Animation for SwimAnimation { -5.0 + skeleton_attr.foot.2 + foot * -6.5, ); next.r_foot.ori = Quaternion::rotation_x(-1.40 + foot * -0.6); + next.r_foot.scale = Vec3::one(); next.l_shoulder.offset = Vec3::new( -skeleton_attr.shoulder.0,