summaryrefslogtreecommitdiff
path: root/client/src/shaders/vertex_world_skin.wgsl
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-21 22:59:01 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-21 22:59:01 +0100
commita3621790a6f4466daab0f38f5eaf57fe064b2e92 (patch)
treecb4d6ef53a65abdd87969cbbf6ad4c9a54b54225 /client/src/shaders/vertex_world_skin.wgsl
parent12bf2f3302efc9042f12ca17104928c35700c229 (diff)
downloadweareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar
weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.bz2
weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.zst
more work on armature
Diffstat (limited to 'client/src/shaders/vertex_world_skin.wgsl')
-rw-r--r--client/src/shaders/vertex_world_skin.wgsl1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/shaders/vertex_world_skin.wgsl b/client/src/shaders/vertex_world_skin.wgsl
index 85dda64..86250f1 100644
--- a/client/src/shaders/vertex_world_skin.wgsl
+++ b/client/src/shaders/vertex_world_skin.wgsl
@@ -33,6 +33,7 @@ struct PushConst {
model_basis: mat3x3<f32>,
}
+var<uniform> joints: array<mat4x4<f32>>;
var<push_constant> pc: PushConst;
@vertex