From 36045e53ca1556ad3ccce6df4a7629e6a0122056 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 00:16:40 +0200 Subject: [PATCH] Update interaction action labels for play and stop animation --- src/app/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index dc42044b..6e54a684 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -464,6 +464,10 @@ function getInteractionActionLabel(link: InteractionLink): string { return "Teleport Player"; case "toggleVisibility": return "Toggle Visibility"; + case "playAnimation": + return "Play Animation"; + case "stopAnimation": + return "Stop Animation"; } }