auto-git:
[change] src/app/App.tsx
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user