| 73 | } |
| 74 | |
| 75 | void BoxCollider::OnDebugDraw() |
| 76 | { |
| 77 | if (GetIsTrigger()) |
| 78 | { |
| 79 | const Color color = Color::GreenYellow; |
| 80 | DEBUG_DRAW_WIRE_BOX(_bounds, color, 0, true); |
| 81 | } |
| 82 | |
| 83 | // Base |
| 84 | Collider::OnDebugDraw(); |
| 85 | } |
| 86 | |
| 87 | namespace |
| 88 | { |
nothing calls this directly
no test coverage detected