This commit is contained in:
antc13
2016-01-20 09:49:54 +01:00
parent a47317bb32
commit 386e76f642
11 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -331,7 +331,7 @@ EntityID Client::createPlayer()
EntityID entityID = m_World->CreateEntity();
ComponentWrapper transform = m_World->AttachComponent(entityID, "Transform");
ComponentWrapper model = m_World->AttachComponent(entityID, "Model");
model["Resource"] = "Models/Core/UnitSphere.obj";
model["Resource"] = "Models/Core/UnitSphere.obj"; // 360NoScope UnitSphere mesh
ComponentWrapper player = m_World->AttachComponent(entityID, "Player");
return entityID;
}