| 266 | } |
| 267 | |
| 268 | bool CanRunForward(const ItemInfo& item, const CollisionInfo& coll) |
| 269 | { |
| 270 | auto setup = GroundMovementSetupData |
| 271 | { |
| 272 | item.Pose.Orientation.y, |
| 273 | -MAX_HEIGHT, -STEPUP_HEIGHT, // NOTE: Bounds defined by run forward state. |
| 274 | false, true, false |
| 275 | }; |
| 276 | |
| 277 | return TestGroundMovementSetup(item, coll, setup); |
| 278 | } |
| 279 | |
| 280 | bool CanRunBackward(const ItemInfo& item, const CollisionInfo& coll) |
| 281 | { |
no test coverage detected