X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld.cpp;h=27daecd3f27c78ffad686f5a4b0c2b494930b1c7;hb=46509f82dcea114b004c53a7f3a9608f2518077f;hp=3f186ea67b298e753f7b3da49b05a64588ba3f2e;hpb=9eb7fb38870c6324580683752d49d62b7a431bce;p=blank.git diff --git a/src/world.cpp b/src/world.cpp index 3f186ea..27daecd 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -88,11 +88,6 @@ World::World() player = &AddEntity(); player->Position({ 4.0f, 4.0f, 4.0f }); - Entity &test_entity = AddEntity(); - test_entity.Position({ 0.0f, 0.0f, 0.0f }); - test_entity.SetShape(&blockShape, { 1.0f, 1.0f, 0.0f }); - test_entity.AngularVelocity(glm::quat(glm::vec3{ 0.00001f, 0.000006f, 0.000013f })); - chunks.Generate({ -4, -4, -4 }, { 5, 5, 5}); }