Added very basic particle system and rendering

This commit is contained in:
Antoine Pilote
2023-08-02 14:17:33 -04:00
parent 7af3a79b0e
commit eecfd3c375
9 changed files with 192 additions and 18 deletions

View File

@@ -56,6 +56,9 @@ namespace Nuake {
void ScriptingSystem::FixedUpdate(Timestep ts)
{
if (!Engine::IsPlayMode())
return;
auto entities = m_Scene->m_Registry.view<WrenScriptComponent>();
for (auto& e : entities)
{