Changeset 4982 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Aug 10, 2005, 6:14:20 PM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/npc.cc
r4977 r4982 28 28 this->setClassID(CL_NPC, "NPC"); 29 29 30 this->loadModel("models/ bolido.obj");30 this->loadModel("models/ships/bolido.obj"); 31 31 } 32 32 -
orxonox/trunk/src/world_entities/weapons/test_bullet.cc
r4969 r4982 36 36 37 37 float modelSize = .3; 38 this->model = (Model*)ResourceManager::getInstance()->load("models/ orx-rocket.obj", OBJ, RP_LEVEL, (void*) &modelSize);38 this->model = (Model*)ResourceManager::getInstance()->load("models/projectiles/orx-rocket.obj", OBJ, RP_LEVEL, (void*) &modelSize); 39 39 40 40 this->energyMin = 1; -
orxonox/trunk/src/world_entities/weapons/test_gun.cc
r4979 r4982 118 118 this->setClassID(CL_TEST_GUN, "TestGun"); 119 119 120 this->model = (Model*)ResourceManager::getInstance()->load("models/ test_gun.obj", OBJ, RP_CAMPAIGN);120 this->model = (Model*)ResourceManager::getInstance()->load("models/guns/test_gun.obj", OBJ, RP_CAMPAIGN); 121 121 122 122 this->setStateDuration(WS_SHOOTING, .4); -
orxonox/trunk/src/world_entities/weapons/turret.cc
r4973 r4982 43 43 this->init(); 44 44 45 this->loadModel("models/ turret1.obj");45 this->loadModel("models/guns/turret1.obj"); 46 46 47 47
Note: See TracChangeset
for help on using the changeset viewer.