| 998 | } |
| 999 | |
| 1000 | bool CanCrawlspaceDive(const ItemInfo& item, const CollisionInfo& coll) |
| 1001 | { |
| 1002 | auto pointColl = GetPointCollision(item, coll.Setup.ForwardAngle, coll.Setup.Radius, -coll.Setup.Height); |
| 1003 | return (abs(pointColl.GetCeilingHeight() - pointColl.GetFloorHeight()) < LARA_HEIGHT || IsInLowSpace(item, coll)); |
| 1004 | } |
| 1005 | |
| 1006 | bool CanPerformLedgeJump(const ItemInfo& item, const CollisionInfo& coll) |
| 1007 | { |
no test coverage detected