We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f19a7b9 commit 783a78dCopy full SHA for 783a78d
com.unity.netcode.gameobjects/Runtime/Configuration/CommandLineOptions.cs
@@ -4,8 +4,15 @@
4
5
namespace Unity.Netcode
6
{
7
+ /// <summary>
8
+ /// This class contains a list of the application instance domain's command line arguments that
9
+ /// are used when entering PlayMode or the build is executed.
10
+ /// </summary>
11
public class CommandLineOptions
12
13
14
+ /// Command Line Options Singleton
15
16
public static CommandLineOptions Instance { get; private set; } = null!;
17
18
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)]
@@ -34,7 +41,6 @@ public string GetArg(string arg)
34
41
35
42
return CommandLineArguments[argIndex + 1];
36
43
}
37
-
38
44
return null;
39
45
40
46
0 commit comments