auto-git:
[change] src/app/App.tsx
This commit is contained in:
@@ -2009,6 +2009,8 @@ function formatRunnerLocomotionMode(
|
|||||||
return "Diving";
|
return "Diving";
|
||||||
case "climbing":
|
case "climbing":
|
||||||
return "Climbing";
|
return "Climbing";
|
||||||
|
case "ledgeGrab":
|
||||||
|
return "Ledge Grab";
|
||||||
default:
|
default:
|
||||||
return "n/a";
|
return "n/a";
|
||||||
}
|
}
|
||||||
@@ -2145,6 +2147,10 @@ function formatRunnerAnimationHook(
|
|||||||
return `climb ${animationHook.movementAmount.toFixed(2)}`;
|
return `climb ${animationHook.movementAmount.toFixed(2)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (animationHook.locomotionMode === "ledgeGrab") {
|
||||||
|
return "ledge grab";
|
||||||
|
}
|
||||||
|
|
||||||
return animationHook.moving
|
return animationHook.moving
|
||||||
? `${animationHook.gait} ${animationHook.movementAmount.toFixed(2)}`
|
? `${animationHook.gait} ${animationHook.movementAmount.toFixed(2)}`
|
||||||
: "idle";
|
: "idle";
|
||||||
|
|||||||
Reference in New Issue
Block a user