diff --git a/src/GameWorld.cpp b/src/GameWorld.cpp index 8ba9083..85e55d5 100755 --- a/src/GameWorld.cpp +++ b/src/GameWorld.cpp @@ -120,8 +120,10 @@ void GameWorld::Initialize() { auto groundshape = CreateEntity(container); auto transformshape = AddComponent(groundshape, "Transform"); - auto meshShape = AddComponent(groundshape, "MeshShape"); - meshShape->ResourceName = "Models/Container/Container.OBJ"; + auto boxShape = AddComponent(groundshape, "BoxShape"); + boxShape->Width = 3.0f; + boxShape->Height = 3.0f; + boxShape->Depth = 6.6f; CommitEntity(groundshape); }