Changeset 4153 in orxonox.OLD for orxonox/branches/md2_loader/src/story_entities
- Timestamp:
- May 10, 2005, 6:48:58 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/md2_loader/src/story_entities/world.cc
r4152 r4153 33 33 #include "skybox.h" 34 34 #include "satellite.h" 35 #include "test_entity.h" 35 36 #include "terrain.h" 36 37 #include "light.h" … … 51 52 #include "substring.h" 52 53 53 #include "md2Model.h" 54 54 55 55 56 using namespace std; … … 484 485 terrain->setRelCoor(Vector(0,-10,0)); 485 486 this->spawn(terrain); 487 488 WorldEntity* testEntity = new TestEntity(); 489 testEntity->setRelCoor(Vector(570, 10, -15)); 490 testEntity->setRelDir(Quaternion(M_PI, Vector(0, 1, 0))); 491 this->spawn(testEntity); 492 //this->localPlayer->addChild(testEntity); 493 486 494 } 487 495
Note: See TracChangeset
for help on using the changeset viewer.