Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 23, 2009, 12:15:06 PM (15 years ago)
Author:
rgrieder
Message:

Moved Config value detailLevelParticle from GraphicsManager to ParticleInterface.
The resulting section name problem is to be resolved later. We've got a mess of config values anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource/src/orxonox/GraphicsManager.cc

    r3327 r3336  
    182182        SetConfigValue(ogreLogLevelCritical_, 2)
    183183            .description("Corresponding orxonox debug level for ogre Critical");
    184         SetConfigValue(detailLevelParticle_, 2)
    185             .description("O: off, 1: low, 2: normal, 3: high").callback(this, &GraphicsManager::detailLevelParticleChanged);
    186     }
    187 
    188     void GraphicsManager::detailLevelParticleChanged()
    189     {
    190         for (ObjectList<ParticleInterface>::iterator it = ObjectList<ParticleInterface>::begin(); it; ++it)
    191             it->detailLevelChanged(this->detailLevelParticle_);
    192184    }
    193185
Note: See TracChangeset for help on using the changeset viewer.