diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-07 15:25:00 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-07 15:25:00 +0100 |
commit | d7fdcfd791f011e33fb9720e7451e56410411e4f (patch) | |
tree | 7db39bb3e9d99ecba7761e8be3d7ae35b288ce2f /shared/src/resources.rs | |
parent | 92ab896339692c7dab300ad4d11a94fa03ee3ef4 (diff) | |
download | weareserver-d7fdcfd791f011e33fb9720e7451e56410411e4f.tar weareserver-d7fdcfd791f011e33fb9720e7451e56410411e4f.tar.bz2 weareserver-d7fdcfd791f011e33fb9720e7451e56410411e4f.tar.zst |
fix armature duplication
Diffstat (limited to 'shared/src/resources.rs')
-rw-r--r-- | shared/src/resources.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/src/resources.rs b/shared/src/resources.rs index 654bfc6..b3d9414 100644 --- a/shared/src/resources.rs +++ b/shared/src/resources.rs @@ -74,7 +74,7 @@ pub struct MeshPart { pub va_transmission: Option<Resource<Vec<f32>>>, pub va_alpha: Option<Resource<Vec<f32>>>, pub va_emission: Option<Resource<Vec<Vec3A>>>, - pub va_joint_index: Option<Resource<Vec<[u16; 4]>>>, + pub va_joint_index: Option<Resource<Vec<[u32; 4]>>>, pub va_joint_weight: Option<Resource<Vec<[f32; 4]>>>, pub tex_normal: Option<Resource<Image<'static>>>, pub tex_roughness: Option<Resource<Image<'static>>>, |