Added --enable-clouds3d and --disable-clouds3d options.
This commit is contained in:
parent
73c4fd481d
commit
95e1b51068
1 changed files with 4 additions and 0 deletions
|
@ -772,6 +772,10 @@ parse_option (const string& arg)
|
|||
fgSetBool("/environment/clouds/status", false);
|
||||
} else if ( arg == "--enable-clouds" ) {
|
||||
fgSetBool("/environment/clouds/status", true);
|
||||
} else if ( arg == "--disable-clouds3d" ) {
|
||||
fgSetBool("/sim/rendering/clouds3d", false);
|
||||
} else if ( arg == "--enable-clouds3d" ) {
|
||||
fgSetBool("/sim/rendering/clouds3d", true);
|
||||
} else if ( arg.find( "--fov=" ) == 0 ) {
|
||||
parse_fov( arg.substr(6) );
|
||||
} else if ( arg == "--disable-fullscreen" ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue