1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

refacto: don't use RenderingEngine singleton on CAO

* we don't need on CAO side more than SceneManager, and temporary. Pass only required SceneManager as a parameter to build CAO and add them to the current scene
* Use temporary the RenderingEngine singleton from ClientEnvironment, waitfor for better solution
* Make ClientActiveObject::addToScene virtual function mandatory to be defined by children to ensure we don't forget to properly define it
This commit is contained in:
Loic Blot 2021-04-29 09:07:36 +02:00 committed by Loïc Blot
parent 1bc855646e
commit 809e68fdc0
5 changed files with 20 additions and 21 deletions

View file

@ -352,7 +352,7 @@ u16 ClientEnvironment::addActiveObject(ClientActiveObject *object)
if (!m_ao_manager.registerObject(object))
return 0;
object->addToScene(m_texturesource);
object->addToScene(m_texturesource, RenderingEngine::get_scene_manager());
// Update lighting immediately
object->updateLight(getDayNightRatio());