| 348 | } |
| 349 | |
| 350 | void Vehicle::renderLightSources(RenderCallback* renderer) { |
| 351 | renderer->addLightSources(m_networkedAnimator.lightSources(position())); |
| 352 | renderer->addLightSources(m_scriptedAnimator.lightSources()); |
| 353 | } |
| 354 | |
| 355 | List<LightSource> Vehicle::lightSources() const { |
| 356 | auto lightSources = m_networkedAnimator.lightSources(position()); |
nothing calls this directly
no test coverage detected