Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6980 in orxonox.OLD for trunk/src/lib/graphics/graphics_engine.cc


Ignore:
Timestamp:
Feb 2, 2006, 1:57:21 PM (18 years ago)
Author:
patrick
Message:

trunk: lenseflares loadable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/graphics_engine.cc

    r6979 r6980  
    133133  .describe("loads a graphics effect");
    134134}
     135
     136
     137
     138
     139/**
     140 * @param root The XML-element to load GraphicsEffects from
     141 */
     142void GraphicsEngine::loadGraphicsEffects(const TiXmlElement* root)
     143{
     144  LOAD_PARAM_START_CYCLE(root, element);
     145  {
     146    PRINTF(0)("element is: %s\n", element->Value());
     147    Factory::fabricate(element);
     148  }
     149  LOAD_PARAM_END_CYCLE(element);
     150}
     151
    135152
    136153
     
    711728  }
    712729}
    713 
    714 
    715 /**
    716  * @param root The XML-element to load GraphicsEffects from
    717  */
    718 void GraphicsEngine::loadGraphicsEffects(const TiXmlElement* root)
    719 {
    720   LOAD_PARAM_START_CYCLE(root, element);
    721   {
    722     PRINTF(0)("element is: %s\n", element->Value());
    723     Factory::fabricate(element);
    724   }
    725   LOAD_PARAM_END_CYCLE(element);
    726 }
Note: See TracChangeset for help on using the changeset viewer.