Skip to content

Commit 9723063

Browse files
committed
Added additional comments to bool? parameter help text
1 parent 4f170d5 commit 9723063

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Runtime/DevConsoleMono.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)