Changeset 10420 in orxonox.OLD for trunk/src/world_entities/projectiles
- Timestamp:
- Jan 27, 2007, 11:38:50 PM (18 years ago)
- Location:
- trunk/src/world_entities/projectiles
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/projectiles/acid_splash.cc
r10368 r10420 60 60 switch (rnd){ 61 61 case 0: 62 this->grid->setTexture( " maps/acid2.png");62 this->grid->setTexture( "textures/acid2.png"); 63 63 break; 64 64 case 1: 65 this->grid->setTexture( " maps/acid3.png");65 this->grid->setTexture( "textures/acid3.png"); 66 66 break; 67 67 case 2: 68 this->grid->setTexture( " maps/blub.png");68 this->grid->setTexture( "textures/blub.png"); 69 69 break; 70 70 default: 71 this->grid->setTexture( " maps/acid2.png");71 this->grid->setTexture( "textures/acid2.png"); 72 72 } 73 73 // if (rand()/2 == 0) //!<Randomized Textrures 74 // this->grid->setTexture( " maps/acid3.png");74 // this->grid->setTexture( "textures/acid3.png"); 75 75 // else 76 // this->grid->setTexture( " maps/blub.png");76 // this->grid->setTexture( "textures/blub.png"); 77 77 78 78 this->grid->toList(OM_ENVIRON); -
trunk/src/world_entities/projectiles/mbolt.cc
r10368 r10420 79 79 this->trail = new Trail(6, 4, .1, this); 80 80 //this->trail->setParent( this); 81 this->trail->setTexture( " maps/laser.png");81 this->trail->setTexture( "textures/laser.png"); 82 82 this->trail->setAbsCoor(this->getAbsCoor() - Vector(.7,0,0)); 83 83 -
trunk/src/world_entities/projectiles/swarm_projectile.cc
r10415 r10420 61 61 this->trail = new Trail(2.5,4,.2, this); 62 62 //this->trail->setParent( this); 63 this->trail->setTexture( " maps/laser.png");63 this->trail->setTexture( "textures/laser.png"); 64 64 65 65 … … 96 96 SwarmProjectile::explosionParticles = new SpriteParticles(200); 97 97 SwarmProjectile::explosionParticles->setName("SwarmProjectileExplosionParticles"); 98 SwarmProjectile::explosionParticles->setMaterialTexture(" maps/radial-trans-noise.png");98 SwarmProjectile::explosionParticles->setMaterialTexture("textures/radial-trans-noise.png"); 99 99 SwarmProjectile::explosionParticles->setLifeSpan(.5, .3); 100 100 SwarmProjectile::explosionParticles->setRadius(0.0, 10);
Note: See TracChangeset
for help on using the changeset viewer.