Changeset 10191 in orxonox.OLD for branches/data_fix/src
- Timestamp:
- Jan 8, 2007, 2:45:23 PM (18 years ago)
- Location:
- branches/data_fix/src
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/data_fix/src/subprojects/importer/multitex.cc
r6532 r10191 47 47 48 48 testMat = new Material; 49 testMat->setDiffuseMap(" maps/radialTransparency.png");49 testMat->setDiffuseMap("textures/radialTransparency.png"); 50 50 obj = new PrimitiveModel(PRIM_PLANE, 10.0); 51 51 -
branches/data_fix/src/world_entities/npcs/door.cc
r10114 r10191 55 55 this->bOpen = false; 56 56 57 this->loadMD2Texture(" maps/doors.jpg");57 this->loadMD2Texture("textures/doors.jpg"); 58 58 this->loadModel("models/creatures/doors.md2", this->scale); 59 59 -
branches/data_fix/src/world_entities/npcs/gate.cc
r10114 r10191 74 74 this->bOpen = false; 75 75 76 this->loadMD2Texture(" maps/wheel.jpg");76 this->loadMD2Texture("textures/wheel.jpg"); 77 77 this->loadModel("models/creatures/hypergate.md2", this->scale); 78 78 -
branches/data_fix/src/world_entities/npcs/repair_station.cc
r10114 r10191 76 76 this->animationCurrent = REPAIR_CYCLE01; 77 77 78 this->loadMD2Texture(" maps/repairstation.jpg");78 this->loadMD2Texture("textures/repairstation.jpg"); 79 79 this->loadModel("models/creatures/repairstation.md2", this->scale); 80 80 -
branches/data_fix/src/world_entities/particles/model_particles.cc
r10186 r10191 70 70 this->registerObject(this, ModelParticles::_objectList); 71 71 72 this->material.setDiffuseMap(" maps/radial-trans-noise.png");72 this->material.setDiffuseMap("textures/radial-trans-noise.png"); 73 73 } 74 74 -
branches/data_fix/src/world_entities/projectiles/boomerang_projectile.cc
r10114 r10191 87 87 BoomerangProjectile::trailParticles = new SpriteParticles(2000); 88 88 BoomerangProjectile::trailParticles->setName("BoomerangProjectileTrailParticles"); 89 BoomerangProjectile::trailParticles->setMaterialTexture(" maps/radial-trans-noise.png");89 BoomerangProjectile::trailParticles->setMaterialTexture("textures/radial-trans-noise.png"); 90 90 BoomerangProjectile::trailParticles->setLifeSpan(1.0, .3); 91 91 BoomerangProjectile::trailParticles->setRadius(0.0, .5); … … 102 102 BoomerangProjectile::explosionParticles = new SpriteParticles(200); 103 103 BoomerangProjectile::explosionParticles->setName("BoomerangProjectileExplosionParticles"); 104 BoomerangProjectile::explosionParticles->setMaterialTexture(" maps/radial-trans-noise.png");104 BoomerangProjectile::explosionParticles->setMaterialTexture("textures/radial-trans-noise.png"); 105 105 BoomerangProjectile::explosionParticles->setLifeSpan(.5, .3); 106 106 BoomerangProjectile::explosionParticles->setRadius(0.0, 10); -
branches/data_fix/src/world_entities/projectiles/guided_missile.cc
r10114 r10191 86 86 GuidedMissile::trailParticles = new SpriteParticles(2000); 87 87 GuidedMissile::trailParticles->setName("GuidedMissileTrailParticles"); 88 GuidedMissile::trailParticles->setMaterialTexture(" maps/radial-trans-noise.png");88 GuidedMissile::trailParticles->setMaterialTexture("textures/radial-trans-noise.png"); 89 89 GuidedMissile::trailParticles->setLifeSpan(1.0, .3); 90 90 GuidedMissile::trailParticles->setRadius(0.0, .5); … … 101 101 GuidedMissile::explosionParticles = new SpriteParticles(200); 102 102 GuidedMissile::explosionParticles->setName("GuidedMissileExplosionParticles"); 103 GuidedMissile::explosionParticles->setMaterialTexture(" maps/radial-trans-noise.png");103 GuidedMissile::explosionParticles->setMaterialTexture("textures/radial-trans-noise.png"); 104 104 GuidedMissile::explosionParticles->setLifeSpan(.5, .3); 105 105 GuidedMissile::explosionParticles->setRadius(0.0, 10); -
branches/data_fix/src/world_entities/projectiles/rocket.cc
r10114 r10191 80 80 Rocket::trailParticles = new SpriteParticles(2000); 81 81 Rocket::trailParticles->setName("RocketTrailParticles"); 82 Rocket::trailParticles->setMaterialTexture(" maps/radial-trans-noise.png");82 Rocket::trailParticles->setMaterialTexture("textures/radial-trans-noise.png"); 83 83 Rocket::trailParticles->setLifeSpan(1.0, .3); 84 84 Rocket::trailParticles->setRadius(0.0, .5); … … 95 95 Rocket::explosionParticles = new SpriteParticles(200); 96 96 Rocket::explosionParticles->setName("RocketExplosionParticles"); 97 Rocket::explosionParticles->setMaterialTexture(" maps/radial-trans-noise.png");97 Rocket::explosionParticles->setMaterialTexture("textures/radial-trans-noise.png"); 98 98 Rocket::explosionParticles->setLifeSpan(.5, .3); 99 99 Rocket::explosionParticles->setRadius(0.0, 10); -
branches/data_fix/src/world_entities/space_ships/collision_probe.cc
r10114 r10191 65 65 66 66 this->toList(OM_GROUP_00); 67 this->loadMD2Texture(" maps/dr_freak.pcx");67 this->loadMD2Texture("textures/dr_freak.pcx"); 68 68 this->loadModel("models/dr_freak.md2"); 69 69 -
branches/data_fix/src/world_entities/space_ships/cruizer.cc
r10114 r10191 127 127 this->burstSystem->addEmitter(this->burstEmitter); 128 128 this->burstSystem->setName("SpaceShip_Burst_System"); 129 ((SpriteParticles*)this->burstSystem)->setMaterialTexture(" maps/radial-trans-noise.png");129 ((SpriteParticles*)this->burstSystem)->setMaterialTexture("textures/radial-trans-noise.png"); 130 130 this->burstSystem->setLifeSpan(1.0, .3); 131 131 this->burstSystem->setRadius(0.0, 1.5); -
branches/data_fix/src/world_entities/space_ships/space_ship.cc
r10114 r10191 225 225 this->burstSystem->addEmitter(this->burstEmitter); 226 226 this->burstSystem->setName("SpaceShip_Burst_System"); 227 ((SpriteParticles*)this->burstSystem)->setMaterialTexture(" maps/radial-trans-noise.png");227 ((SpriteParticles*)this->burstSystem)->setMaterialTexture("textures/radial-trans-noise.png"); 228 228 this->burstSystem->setLifeSpan(1.0, .3); 229 229 this->burstSystem->setRadius(0.0, 1.0); -
branches/data_fix/src/world_entities/space_ships/spacecraft_2d.cc
r10114 r10191 169 169 this->burstSystem->addEmitter(this->burstEmitter); 170 170 this->burstSystem->setName("SpaceShip_Burst_System"); 171 ((SpriteParticles*)this->burstSystem)->setMaterialTexture(" maps/radial-trans-noise.png");171 ((SpriteParticles*)this->burstSystem)->setMaterialTexture("textures/radial-trans-noise.png"); 172 172 this->burstSystem->setLifeSpan(1.0, .3); 173 173 this->burstSystem->setRadius(0.0, 1.5); -
branches/data_fix/src/world_entities/space_ships/turbine_hover.cc
r10114 r10191 167 167 this->burstSystem->addEmitter(this->burstEmitter[1]); 168 168 this->burstSystem->setName("SpaceShip_Burst_System"); 169 ((SpriteParticles*)this->burstSystem)->setMaterialTexture(" maps/radial-trans-noise.png");169 ((SpriteParticles*)this->burstSystem)->setMaterialTexture("textures/radial-trans-noise.png"); 170 170 this->burstSystem->setLifeSpan(1.0, .3); 171 171 this->burstSystem->setRadius(0.0, 1.5);
Note: See TracChangeset
for help on using the changeset viewer.