Skip to content

Commit 894db9e

Browse files
committed
Added path command.
1 parent 3ad3f12 commit 894db9e

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Runtime/DevConsoleMono.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,13 @@ private void InitBuiltInCommands()
885885
}
886886
));
887887

888+
AddCommand(Command.Create(
889+
"path",
890+
"",
891+
"Display the path to the application executable",
892+
() => Log($"Application path: {AppDomain.CurrentDomain.BaseDirectory}.")
893+
));
894+
888895
AddCommand(Command.Create<int>(
889896
"fps_target",
890897
"fps_max",

0 commit comments

Comments
 (0)