Changeset 706
- Timestamp:
- Dec 28, 2007, 3:00:01 AM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/core/DebugLevel.cc
r699 r706 52 52 void DebugLevel::setConfigValues() 53 53 { 54 SetConfigValue(softDebugLevelConsole_, 3) ;55 SetConfigValue(softDebugLevelLogfile_, 3) ;56 SetConfigValue(softDebugLevelShell_, 1) ;54 SetConfigValue(softDebugLevelConsole_, 3).description("The maximal level of debug output shown in the console"); 55 SetConfigValue(softDebugLevelLogfile_, 3).description("The maximal level of debug output shown in the logfile"); 56 SetConfigValue(softDebugLevelShell_, 1).description("The maximal level of debug output shown in the ingame shell"); 57 57 58 58 // softDebugLevel_ is the maximum of the 3 variables -
code/branches/FICN/src/orxonox/objects/Fighter.cc
r697 r706 106 106 void Fighter::setConfigValues() 107 107 { 108 SetConfigValue(bInvertMouse_, false) ;108 SetConfigValue(bInvertMouse_, false).description("Set this to true for joystick-like mouse behaviour (mouse up = ship down)."); 109 109 } 110 110 -
code/branches/FICN/src/orxonox/objects/Projectile.cc
r697 r706 65 65 void Projectile::setConfigValues() 66 66 { 67 SetConfigValue(lifetime_, 10.0) ;68 SetConfigValue(speed_, 2000.0) ;67 SetConfigValue(lifetime_, 10.0).description("The time in seconds a projectile stays alive"); 68 SetConfigValue(speed_, 2000.0).description("The speed of a projectile in units per second"); 69 69 } 70 70 -
code/branches/FICN/src/orxonox/objects/SpaceShip.cc
r697 r706 124 124 void SpaceShip::setConfigValues() 125 125 { 126 SetConfigValue(bInvertYAxis_, false) ;127 SetConfigValue(reloadTime_, 0.125) ;126 SetConfigValue(bInvertYAxis_, false).description("Set this to true for joystick-like mouse behaviour (mouse up = ship down)."); 127 SetConfigValue(reloadTime_, 0.125).description("The reload time of the weapon in seconds"); 128 128 } 129 129
Note: See TracChangeset
for help on using the changeset viewer.