| 327 | #include "Engine/Debug/DebugDraw.h" |
| 328 | |
| 329 | void AudioSource::OnDebugDrawSelected() |
| 330 | { |
| 331 | // Draw influence range |
| 332 | if (_allowSpatialization) |
| 333 | DEBUG_DRAW_WIRE_SPHERE(BoundingSphere(_transform.Translation, _minDistance), Color::CornflowerBlue, 0, true); |
| 334 | |
| 335 | // Base |
| 336 | Actor::OnDebugDrawSelected(); |
| 337 | } |
| 338 | |
| 339 | #endif |
| 340 |
nothing calls this directly
no test coverage detected