Changeset 10190 in orxonox.OLD for branches/data_fix/src
- Timestamp:
- Jan 8, 2007, 11:34:37 AM (18 years ago)
- Location:
- branches/data_fix/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/data_fix/src/lib/graphics/importer/bsp/bsp_file.cc
r10033 r10190 449 449 //this->Materials[i]->setShininess(100.0); 450 450 // this->Materials[i].mat->setTransparency(1.0); 451 this->Materials[i].mat->setDiffuseMap(" pictures/ground.tga");452 this->Materials[i].mat->setAmbientMap(" pictures/ground.tga");453 this->Materials[i].mat->setSpecularMap(" pictures/ground.tga");451 this->Materials[i].mat->setDiffuseMap("textures/ground.tga"); 452 this->Materials[i].mat->setAmbientMap("textures/ground.tga"); 453 this->Materials[i].mat->setSpecularMap("textures/ground.tga"); 454 454 this->Materials[i].alpha = false; 455 455 this->Materials[i].animated = false; … … 596 596 //this->Materials[i]->setShininess(100.0); 597 597 //this->Materials[i].mat->setTransparency(1.0); 598 this->Materials[i].mat->setDiffuseMap(" pictures/error_texture.png");599 this->Materials[i].mat->setAmbientMap(" pictures/error_texture.png");600 this->Materials[i].mat->setSpecularMap(" pictures/error_texture.png");598 this->Materials[i].mat->setDiffuseMap("textures/error_texture.png"); 599 this->Materials[i].mat->setAmbientMap("textures/error_texture.png"); 600 this->Materials[i].mat->setSpecularMap("textures/error_texture.png"); 601 601 this->Materials[i].alpha = true; 602 602 this->Materials[i].animated = false; -
branches/data_fix/src/lib/graphics/render2D/image_plane.cc
r10114 r10190 59 59 60 60 //this->setBindNode(this); 61 this->setTexture(" pictures/error_texture.png");61 this->setTexture("textures/error_texture.png"); 62 62 } 63 63 -
branches/data_fix/src/orxonox.cc
r10178 r10190 257 257 GraphicsEngine::getInstance()->initFromPreferences(); 258 258 259 std::string iconName = Resources::ResourceManager::getInstance()->prependAbsoluteMainPath(" pictures/fighter-top-32x32.bmp");259 std::string iconName = Resources::ResourceManager::getInstance()->prependAbsoluteMainPath("textures/fighter-top-32x32.bmp"); 260 260 if (!iconName.empty()) 261 261 { -
branches/data_fix/src/story_entities/game_world_data.cc
r10013 r10190 160 160 PRINTF(2)("no LoadScreen specified, loading default\n"); 161 161 162 glmis->setBackgroundImage(" pictures/load_screen.jpg");162 glmis->setBackgroundImage("textures/load_screens/default.jpg"); 163 163 this->glmis->setMaximum(8); 164 164 // this->glmis->draw(); -
branches/data_fix/src/world_entities/environments/mapped_water.cc
r10114 r10190 162 162 mat.setDiffuseMap(refrTex, 1); 163 163 // load normal map 164 mat.setDiffuseMap(" pictures/water_normalmap.bmp", GL_TEXTURE_2D, 2);164 mat.setDiffuseMap("textures/water_normalmap.bmp", GL_TEXTURE_2D, 2); 165 165 // load dudv map 166 mat.setDiffuseMap(" pictures/water_dudvmap.bmp", GL_TEXTURE_2D, 3);166 mat.setDiffuseMap("textures/water_dudvmap.bmp", GL_TEXTURE_2D, 3); 167 167 168 168 // sets texture parameters for reflection texture -
branches/data_fix/src/world_entities/skysphere.cc
r9869 r10190 43 43 this->toList(OM_BACKGROUND); 44 44 if (fileName == NULL) 45 this->initialize(" pictures/sky-replace.jpg");45 this->initialize("textures/sky-replace.jpg"); 46 46 else 47 47 this->initialize(fileName);
Note: See TracChangeset
for help on using the changeset viewer.