diff --git a/examples/PhysicsPlayground/main.cpp b/examples/PhysicsPlayground/main.cpp index 728315efc..090a5c103 100644 --- a/examples/PhysicsPlayground/main.cpp +++ b/examples/PhysicsPlayground/main.cpp @@ -294,7 +294,7 @@ int main() colliderModel->SetMaterial(i, colliderMat); } - constexpr std::size_t ShipCount = 1000; + constexpr std::size_t ShipCount = 20; for (std::size_t i = 0; i < ShipCount; ++i) { entt::handle shipEntity = world.CreateEntity(); @@ -314,7 +314,7 @@ int main() shipEntity.emplace(physSystem.CreateRigidBody(shipCollider)); #endif - shipEntity.get().AttachRenderable(colliderModel); + //shipEntity.get().AttachRenderable(colliderModel); } }