From ed3d48e07fa6db84bbb24db6dbe044cbc36f049f Mon Sep 17 00:00:00 2001 From: release-bot Date: Mon, 9 Feb 2026 22:15:11 +0100 Subject: [PATCH] fix(runtime): correctly encode 2d shape for wasm nodes --- app/src/lib/runtime/runtime-executor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/lib/runtime/runtime-executor.ts b/app/src/lib/runtime/runtime-executor.ts index 51595d1..0248f25 100644 --- a/app/src/lib/runtime/runtime-executor.ts +++ b/app/src/lib/runtime/runtime-executor.ts @@ -28,7 +28,7 @@ function getValue(input: NodeInput, value?: unknown) { } if (Array.isArray(value)) { - if (input.type === 'vec3') { + if (input.type === 'vec3' || input.type === 'shape') { return [ 0, value.length + 1,