From b9575172a6922ef05c39bf4f7d86bfb3263f1a15 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 30 Apr 2026 00:18:29 +0200 Subject: [PATCH] Support diving and climbing locomotion modes in runner logic --- src/app/App.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 49bb23d8..25dd6936 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2002,6 +2002,10 @@ function formatRunnerLocomotionMode( return "Flying"; case "swimming": return "Swimming"; + case "diving": + return "Diving"; + case "climbing": + return "Climbing"; default: return "n/a"; } @@ -2134,6 +2138,10 @@ function formatRunnerAnimationHook( return `swim ${animationHook.movementAmount.toFixed(2)}`; } + if (animationHook.locomotionMode === "climbing") { + return `climb ${animationHook.movementAmount.toFixed(2)}`; + } + return animationHook.moving ? `${animationHook.gait} ${animationHook.movementAmount.toFixed(2)}` : "idle";