Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10190 in orxonox.OLD


Ignore:
Timestamp:
Jan 8, 2007, 11:34:37 AM (17 years ago)
Author:
bknecht
Message:

changed all /pictures/ to /textures/

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  
    449449    //this->Materials[i]->setShininess(100.0);
    450450   // 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");
    454454    this->Materials[i].alpha = false;
    455455    this->Materials[i].animated = false;
     
    596596    //this->Materials[i]->setShininess(100.0);
    597597    //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");
    601601    this->Materials[i].alpha = true;
    602602    this->Materials[i].animated = false;
  • branches/data_fix/src/lib/graphics/render2D/image_plane.cc

    r10114 r10190  
    5959
    6060  //this->setBindNode(this);
    61   this->setTexture("pictures/error_texture.png");
     61  this->setTexture("textures/error_texture.png");
    6262}
    6363
  • branches/data_fix/src/orxonox.cc

    r10178 r10190  
    257257  GraphicsEngine::getInstance()->initFromPreferences();
    258258
    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");
    260260  if (!iconName.empty())
    261261  {
  • branches/data_fix/src/story_entities/game_world_data.cc

    r10013 r10190  
    160160    PRINTF(2)("no LoadScreen specified, loading default\n");
    161161
    162     glmis->setBackgroundImage("pictures/load_screen.jpg");
     162    glmis->setBackgroundImage("textures/load_screens/default.jpg");
    163163    this->glmis->setMaximum(8);
    164164    //     this->glmis->draw();
  • branches/data_fix/src/world_entities/environments/mapped_water.cc

    r10114 r10190  
    162162  mat.setDiffuseMap(refrTex, 1);
    163163  // 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);
    165165  // 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);
    167167
    168168  // sets texture parameters for reflection texture
  • branches/data_fix/src/world_entities/skysphere.cc

    r9869 r10190  
    4343  this->toList(OM_BACKGROUND);
    4444  if (fileName == NULL)
    45     this->initialize("pictures/sky-replace.jpg");
     45    this->initialize("textures/sky-replace.jpg");
    4646  else
    4747    this->initialize(fileName);
Note: See TracChangeset for help on using the changeset viewer.