diff --git a/src/Systems/ParticleSystem.cpp b/src/Systems/ParticleSystem.cpp index df47cf6..9b4f682 100644 --- a/src/Systems/ParticleSystem.cpp +++ b/src/Systems/ParticleSystem.cpp @@ -69,7 +69,6 @@ void Systems::ParticleSystem::UpdateEntity(double dt, EntityID entity, EntityID m_World->RemoveEntity(particleID); m_ParticlesToEmitter.erase(particleID); - LOG_INFO("Removed a particle: %i", particleID); return; } else @@ -144,7 +143,6 @@ void Systems::ParticleSystem::SpawnParticles(EntityID emitterID) for(int i = 0; i < eComponent->SpawnCount; i++) { auto ent = m_World->CloneEntity(eComponent->ParticleTemplate); - LOG_INFO("Spawned a particle: %i", ent); m_ParticlesToEmitter.insert(std::make_pair(ent, emitterID)); auto particleTransform = m_World->GetComponent(ent); particleTransform->Position = ePosition; @@ -255,7 +253,6 @@ bool Systems::ParticleSystem::CreateExplosion(const Events::CreateExplosion &e) transform->Position = e.Position; transform->Orientation = e.RelativeUpOrientation; - LOG_INFO("Now we should spawn 1 particle!!!!!! not 2 :("); SpawnParticles(explosion); m_ExplosionEmitters[explosion] = glfwGetTime();