Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4176 in orxonox.OLD for orxonox/trunk/src/lib/gui


Ignore:
Timestamp:
May 13, 2005, 11:09:20 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the particleSystem into the Trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/gui/gui/gui_video.cc

    r4132 r4176  
    107107      Label* modelDetailLabel;  //!< Label for model-detail.
    108108      Menu* modelDetail;        //!< model-detail.
     109      CheckButton* particles;   //!< If the Particles should be enabled
    109110      Label* antiAliasingLabel; //!< Label for the anti-aliasing mode.
    110111      Menu* antiAliasing;       //!< Menu for the Antialiasing-mode.
     
    142143      advancedBox->fill(modelDetail);
    143144     
     145      particles = new CheckButton(CONFIG_NAME_PARTICLES_ENABLED);
     146      particles->saveability();
     147      particles->setDefaultValue(1);
     148      advancedBox->fill(particles);
     149
    144150      antiAliasingLabel = new Label("Anti-Aliasing-depth:");
    145151      advancedBox->fill(antiAliasingLabel);
     
    155161      filterMethod->saveability();
    156162      advancedBox->fill(filterMethod);
     163
     164
    157165 
    158166      closeButton = new Button("close");
Note: See TracChangeset for help on using the changeset viewer.