From b0b0fca64a124820369a4ff4424277e915437f6d Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 4 Jun 2020 02:14:03 -0400 Subject: [PATCH] fix shoulders in charselect --- voxygen/src/anim/character/idle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/anim/character/idle.rs b/voxygen/src/anim/character/idle.rs index 3275047a27..db4fa6093b 100644 --- a/voxygen/src/anim/character/idle.rs +++ b/voxygen/src/anim/character/idle.rs @@ -85,7 +85,7 @@ impl Animation for IdleAnimation { next.l_shoulder.offset = Vec3::new( -skeleton_attr.shoulder.0, - skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); next.l_shoulder.ori = Quaternion::rotation_x(0.0); @@ -93,7 +93,7 @@ impl Animation for IdleAnimation { next.r_shoulder.offset = Vec3::new( skeleton_attr.shoulder.0, - skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); next.r_shoulder.ori = Quaternion::rotation_x(0.0);