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";