summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-21 22:00:39 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-21 22:00:39 +0100
commit12bf2f3302efc9042f12ca17104928c35700c229 (patch)
tree7abf77d5b94308993c9d67f65413f8a8d698c685 /shared
parent20d5d575ad84da3d37bd581425fc335016f33c82 (diff)
downloadweareserver-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.rs2
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>,