From 396292edaaad2d39aadf42abba81a5eb8e461d83 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 06:24:32 +0200 Subject: [PATCH] Update animation effect checks in App.tsx --- src/app/App.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 3ab76d72..082244ae 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -5105,7 +5105,8 @@ export function App({ store, initialStatusMessage }: AppProps) { (step) => { if ( step.type !== "controlEffect" || - step.effect.type !== "playModelAnimation" + (step.effect.type !== "playModelAnimation" && + step.effect.type !== "playActorAnimation") ) { throw new Error( "The current sequence control step does not expose an animation clip." @@ -5132,7 +5133,8 @@ export function App({ store, initialStatusMessage }: AppProps) { (step) => { if ( step.type !== "controlEffect" || - step.effect.type !== "playModelAnimation" + (step.effect.type !== "playModelAnimation" && + step.effect.type !== "playActorAnimation") ) { throw new Error( "The current sequence control step does not expose animation looping."