diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/world.cpp b/src/world.cpp index 93cf511..fb7870d 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -230,15 +230,14 @@ void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities, if (currentWorld == nullptr) { currentWorld = &(worlds.front()); events.emit<WorldChangeEvent>(currentWorld); - std::cout << "Emitted" << std::endl; } if (currentWorld->meshUpdated) { - events.emit<NewRenderEvent>( + events.emit<WorldMeshUpdateEvent>( currentWorld->worldVBO, + currentWorld->mesh.size(), currentWorld->getTexture(), - currentWorld->getNormal(), - currentWorld->mesh.size() + currentWorld->getNormal() ); } } |