aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp7
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()
);
}
}