Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PixoPlatformUtilities.cs
Go to the documentation of this file.
1
2using System.Collections.Generic;
3using System.Runtime.InteropServices.WindowsRuntime;
4
5namespace PixoVR.Apex
6{
7 internal sealed class PixoPlatformUtilities : PixoSingleton<PixoPlatformUtilities>
8 {
11 {
12#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_WSA
14#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
16#elif UNITY_ANDROID
18#else
20#endif
21 }
22
23 public static bool OpenURL(string url)
24 {
25 return Instance._OpenURL(url);
26 }
27
28 public bool _OpenURL(string url)
29 {
30 return PlatformUtilities.OpenURL(url);
31 }
32
33 public static bool OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)
34 {
35 return Instance._OpenApplication(applicationPath, argumentKeys, argumentValues);
36 }
37
38 public bool _OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)
39 {
40 return PlatformUtilities.OpenApplication(applicationPath, argumentKeys, argumentValues);
41 }
42
43 public static Dictionary<string, string> ParseApplicationArguments()
44 {
45 return Instance._ParseApplicationArguments();
46 }
47
48 public Dictionary<string, string> _ParseApplicationArguments()
49 {
51 }
52 }
53}
virtual Dictionary< string, string > ParseApplicationArguments()
virtual bool OpenApplication(string applicationName, string[] argumentKeys, string[] argumentValues)
PixoGenericPlatformUtilities PlatformUtilities
Dictionary< string, string > _ParseApplicationArguments()
static bool OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)
bool _OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)
static Dictionary< string, string > ParseApplicationArguments()