- Timestamp:
- Jan 27, 2007, 11:38:50 PM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/network/monitor/network_stats_widget.cc
r10320 r10420 228 228 this->_valueText.setChangedTextColor(Color::white); 229 229 230 //this->setBackgroundTexture(" maps/gui_element_background_2.png");230 //this->setBackgroundTexture("textures/gui_element_background_2.png"); 231 231 this->setBackgroundColor(Color(.5,.5,.5,1)); 232 232 233 233 //this->_name.setBackgroundTexture(Texture()); 234 //this->_valueText.setBackgroundTexture(" maps/gui_element_background_2.png");234 //this->_valueText.setBackgroundTexture("textures/gui_element_background_2.png"); 235 235 this->_bar.setBackgroundTexture(Texture()); 236 236 this->_bar.setBackgroundColor(Color(0,0,0,0)); 237 this->_bar.setForegroundTexture(" maps/gui_element_background_faded.png");237 this->_bar.setForegroundTexture("textures/gui_element_background_faded.png"); 238 238 this->_bar.setForegroundColor(Color(.5, .5, .5, 1)); 239 239 this->_bar.setChangedValueColor(Color::black); -
trunk/src/util/hud.cc
r10368 r10420 541 541 this->shipValuesBox = new OrxGui::GLGuiBox(OrxGui::Vertical); 542 542 //this->shipValuesBox->setWidgetSize(1000,500); 543 //this->shipValuesBox->setBackgroundTexture(" maps/gui_container_background.png");543 //this->shipValuesBox->setBackgroundTexture("textures/gui_container_background.png"); 544 544 this->shipValuesBox->setBackgroundTexture(Texture()); 545 545 this->shipValuesBox->setBackgroundColor(Color(0,0,1,0.5)); -
trunk/src/world_entities/elements/glgui_energywidgetvertical.cc
r10368 r10420 46 46 this->_bar->setBackgroundTexture(Texture()); 47 47 this->_bar->setBackgroundColor(Color(0,0,0,0)); 48 this->_bar->setForegroundTexture(" maps/gui_element_background_faded.png");48 this->_bar->setForegroundTexture("textures/gui_element_background_faded.png"); 49 49 this->_bar->setForegroundColor(Color::green); 50 50 this->_bar->setChangedValueColor(Color(1,0,0,0.2)); … … 66 66 this->_image->setBackgroundColor(Color(1,1,1,0)); 67 67 this->_image->setBackgroundTexture(Texture()); 68 this->_image->loadImageFromFile(" maps/evil-flower.png");68 this->_image->loadImageFromFile("textures/evil-flower.png"); 69 69 //this->_image.setRelCoor2D(borderLeft(), borderTop() + this->_bar.getSizeX2D()); 70 70 this->_image->setRelCoor2D(0,0); -
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); -
trunk/src/world_entities/space_ships/space_ship.cc
r10412 r10420 384 384 /// FIXME 385 385 this->trail = new Trail( 5, 10, .2, this); 386 this->trail->setTexture( " maps/engine.png");386 this->trail->setTexture( "textures/engine.png"); 387 387 388 388 this->trailL = new Trail( 5, 10, .2, this); 389 this->trailL->setTexture( " maps/engine.png");389 this->trailL->setTexture( "textures/engine.png"); 390 390 391 391 this->trailR = new Trail( 5, 10, .2, this); 392 this->trailR->setTexture( " maps/engine.png");392 this->trailR->setTexture( "textures/engine.png"); 393 393 394 394 … … 398 398 /* 399 399 this->test = new Wobblegrid(5); 400 test->setTexture(" maps/blub.png");400 test->setTexture("textures/blub.png"); 401 401 402 402 test->setAbsCoor( this->getAbsCoor() + Vector(0, 2, 0)); -
trunk/src/world_entities/test_entity2.cc
r10368 r10420 87 87 this->rotationSpeed = 3; 88 88 89 this->material->setDiffuseMap(" maps/TE2.tga");89 this->material->setDiffuseMap("textures/TE2.tga"); 90 90 91 91 }
Note: See TracChangeset
for help on using the changeset viewer.