This commit is contained in:
Tobias Dahl
2014-03-13 02:30:17 +01:00
parent 80eb38f373
commit 7991efedf8
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ void GameWorld::Initialize()
SetProperty(m_Player, "Name", std::string("PlayerShip"));
transform = AddComponent<Components::Transform>(m_Player, "Transform");
transform->Position = glm::vec3(0.f, 4.f, 0.f);
transform->Scale = glm::vec3(2.0f);
transform->Scale = glm::vec3(1.0f);
model = AddComponent<Components::Model>(m_Player, "Model");
model->ModelFile = "Models/ship.obj";
AddComponent<Components::Input>(m_Player, "Input");