auto-git:

[change] src/app/App.tsx
This commit is contained in:
2026-05-01 16:49:45 +02:00
parent 7330bfdb97
commit cbc7368929

View File

@@ -2009,6 +2009,8 @@ function formatRunnerLocomotionMode(
return "Diving";
case "climbing":
return "Climbing";
case "ledgeGrab":
return "Ledge Grab";
default:
return "n/a";
}
@@ -2145,6 +2147,10 @@ function formatRunnerAnimationHook(
return `climb ${animationHook.movementAmount.toFixed(2)}`;
}
if (animationHook.locomotionMode === "ledgeGrab") {
return "ledge grab";
}
return animationHook.moving
? `${animationHook.gait} ${animationHook.movementAmount.toFixed(2)}`
: "idle";