From ebf77db1ad0c8d5c513e2f69d0768d7f0c13110c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 00:01:26 +0200 Subject: [PATCH] Add animationClipName and animationAutoplay to RuntimeModelInstance --- src/runtime-three/runtime-scene-build.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime-three/runtime-scene-build.ts b/src/runtime-three/runtime-scene-build.ts index f49fbe37..7a740c6c 100644 --- a/src/runtime-three/runtime-scene-build.ts +++ b/src/runtime-three/runtime-scene-build.ts @@ -107,6 +107,8 @@ export interface RuntimeModelInstance { position: Vec3; rotationDegrees: Vec3; scale: Vec3; + animationClipName?: string; + animationAutoplay?: boolean; } export interface RuntimeEntityCollection {