Changeset 4721 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Jun 27, 2005, 3:00:53 AM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entities/world.cc
r4720 r4721 569 569 // new PhysicsConnection(this->localPlayer, gravity); 570 570 571 TestEntity* testEntity = new TestEntity();572 testEntity->setRelCoor(Vector(570, 10, -15));573 testEntity->setRelDir(Quaternion(M_PI, Vector(0, 1, 0)));574 this->spawn(testEntity);571 // TestEntity* testEntity = new TestEntity(); 572 // testEntity->setRelCoor(Vector(570, 10, -15)); 573 // testEntity->setRelDir(Quaternion(M_PI, Vector(0, 1, 0))); 574 // this->spawn(testEntity); 575 575 576 576 TestEntity* testEntity2 = new TestEntity(); 577 577 testEntity2->setAnim(RUN); 578 testEntity2->setRelCoor(Vector( 570, 30, 15));578 testEntity2->setRelCoor(Vector(2400, 25, 260)); 579 579 testEntity2->setRelDir(Quaternion(M_PI, Vector(0, 1, 0))); 580 580 this->spawn(testEntity2); 581 581 582 583 new PhysicsConnection(testEntity, gravity); 582 TestEntity* testEntity3 = new TestEntity(); 583 testEntity3->setAnim(JUMP); 584 testEntity3->setRelCoor(Vector(2400, 25, 280)); 585 testEntity3->setRelDir(Quaternion(M_PI, Vector(0, 1, 0))); 586 this->spawn(testEntity3); 587 588 TestEntity* testEntity4 = new TestEntity(); 589 testEntity4->setAnim(RUN); 590 testEntity4->setRelCoor(Vector(2430, 25, 250)); 591 testEntity4->setRelDir(Quaternion(M_PI, Vector(0, 1, 0))); 592 this->spawn(testEntity4); 593 594 595 // new PhysicsConnection(testEntity, gravity); 584 596 585 597 // printing out some debug stuff -
orxonox/trunk/src/subprojects/collision_detection/collision_detection.cc
r4719 r4721 239 239 while( entity != NULL) 240 240 { 241 if( unlikely(animateModel))241 if( unlikely(animateModel)) 242 242 entity->tick(dt); 243 243 entity = iterator->nextElement();
Note: See TracChangeset
for help on using the changeset viewer.