Lua script

This commit is contained in:
2026-02-28 00:19:25 +03:00
parent 5434239b47
commit 2815369bb8
8 changed files with 202 additions and 7 deletions

View File

@@ -62,8 +62,8 @@ void World::Render()
// Render entities
for (int i = 0; i < m_entities.size(); i++)
{
if (frustum.CullBoundingBox(m_entities[i]->GetBoundingBox()))
continue;
//if (frustum.CullBoundingBox(m_entities[i]->GetBoundingBox()))
// continue;
m_entities[i]->Render();
}