@@ -1154,7 +1154,7 @@ private void InitBuiltInCommands()
11541154 "showfps" ,
11551155 "displayfps" ,
11561156 "Query or set whether the fps is being displayed on-screen" ,
1157- Parameter . Create ( "enabled" , "Whether the fps is being displayed on-screen" ) ,
1157+ Parameter . Create ( "enabled" , "Whether the fps is being displayed on-screen (use \" NULL \" to toggle) " ) ,
11581158 b =>
11591159 {
11601160 if ( ! b . HasValue )
@@ -1189,7 +1189,7 @@ private void InitBuiltInCommands()
11891189 "fullscreen" ,
11901190 "" ,
11911191 "Query or set whether the window is full screen" ,
1192- Parameter . Create ( "enabled" , "Whether the window is full screen" ) ,
1192+ Parameter . Create ( "enabled" , "Whether the window is full screen (use \" NULL \" to toggle) " ) ,
11931193 b =>
11941194 {
11951195 if ( ! b . HasValue )
@@ -1270,7 +1270,7 @@ private void InitBuiltInCommands()
12701270 "cam_ortho" ,
12711271 "" ,
12721272 "Query or set whether the main camera is orthographic" ,
1273- Parameter . Create ( "enabled" , "Whether the main camera is orthographic" ) ,
1273+ Parameter . Create ( "enabled" , "Whether the main camera is orthographic (use \" NULL \" to toggle) " ) ,
12741274 b =>
12751275 {
12761276 if ( Camera . main == null )
@@ -1508,7 +1508,7 @@ void logChildren(GameObject obj, int tabAmount)
15081508 "log_logs" ,
15091509 "" ,
15101510 "Query, enable or disable displaying Unity logs in the developer console" ,
1511- Parameter . Create ( "enabled" , "Whether Unity logs should be displayed in the developer console" ) ,
1511+ Parameter . Create ( "enabled" , "Whether Unity logs should be displayed in the developer console (use \" NULL \" to toggle) " ) ,
15121512 b =>
15131513 {
15141514 if ( ! b . HasValue )
@@ -1529,7 +1529,7 @@ void logChildren(GameObject obj, int tabAmount)
15291529 "log_errors" ,
15301530 "" ,
15311531 "Query, enable or disable displaying Unity errors in the developer console" ,
1532- Parameter . Create ( "enabled" , "Whether Unity errors should be displayed in the developer console" ) ,
1532+ Parameter . Create ( "enabled" , "Whether Unity errors should be displayed in the developer console (use \" NULL \" to toggle) " ) ,
15331533 b =>
15341534 {
15351535 if ( ! b . HasValue )
@@ -1550,7 +1550,7 @@ void logChildren(GameObject obj, int tabAmount)
15501550 "log_exceptions" ,
15511551 "" ,
15521552 "Query, enable or disable displaying Unity exceptions in the developer console" ,
1553- Parameter . Create ( "enabled" , "Whether Unity exceptions should be displayed in the developer console" ) ,
1553+ Parameter . Create ( "enabled" , "Whether Unity exceptions should be displayed in the developer console (use \" NULL \" to toggle) " ) ,
15541554 b =>
15551555 {
15561556 if ( ! b . HasValue )
@@ -1571,7 +1571,7 @@ void logChildren(GameObject obj, int tabAmount)
15711571 "log_warnings" ,
15721572 "" ,
15731573 "Query, enable or disable displaying Unity warnings in the developer console" ,
1574- Parameter . Create ( "enabled" , "Whether Unity warnings should be displayed in the developer console" ) ,
1574+ Parameter . Create ( "enabled" , "Whether Unity warnings should be displayed in the developer console (use \" NULL \" to toggle) " ) ,
15751575 b =>
15761576 {
15771577 if ( ! b . HasValue )
0 commit comments