diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:00:39 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:00:39 +0100 |
commit | 12bf2f3302efc9042f12ca17104928c35700c229 (patch) | |
tree | 7abf77d5b94308993c9d67f65413f8a8d698c685 /shared | |
parent | 20d5d575ad84da3d37bd581425fc335016f33c82 (diff) | |
download | weareserver-12bf2f3302efc9042f12ca17104928c35700c229.tar weareserver-12bf2f3302efc9042f12ca17104928c35700c229.tar.bz2 weareserver-12bf2f3302efc9042f12ca17104928c35700c229.tar.zst |
split shaders to individual files
Diffstat (limited to 'shared')
-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 1b2136d..5901eb1 100644 --- a/shared/src/resources.rs +++ b/shared/src/resources.rs @@ -50,7 +50,7 @@ pub struct EnvironmentPart { pub struct MeshPart { pub name: Option<String>, pub index: Option<Resource<Vec<[u32; 3]>>>, - pub armature: Option<Armature>, + pub armature: Option<Resource<Armature>>, pub g_metallic: Option<f32>, pub g_roughness: Option<f32>, pub g_albedo: Option<Vec3A>, |