| 301 | } |
| 302 | |
| 303 | bool CanWalkBackward(const ItemInfo& item, const CollisionInfo& coll) |
| 304 | { |
| 305 | auto setup = GroundMovementSetupData |
| 306 | { |
| 307 | short(item.Pose.Orientation.y + ANGLE(180.0f)), |
| 308 | STEPUP_HEIGHT, -STEPUP_HEIGHT // NOTE: Bounds defined by walk backward state. |
| 309 | }; |
| 310 | |
| 311 | return TestGroundMovementSetup(item, coll, setup); |
| 312 | } |
| 313 | |
| 314 | static bool TestSidestep(const ItemInfo& item, const CollisionInfo& coll, bool isGoingRight) |
| 315 | { |
no test coverage detected