예제 #1
0
 public override void DeclareRuntimePlatforms(Settings settings)
 {
     settings.DeclareRuntimePlatform(RuntimePlatform.WindowsPlayer, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerX86, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerX64, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerARM, this);
 }
예제 #2
0
        public override void DeclareUnityMappings(Settings settings)
        {
            settings.DeclareRuntimePlatform(RuntimePlatform.WindowsPlayer, this);
            settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerX86, this);
            settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerX64, this);
            settings.DeclareRuntimePlatform(RuntimePlatform.WSAPlayerARM, this);

#if UNITY_EDITOR
            settings.DeclareBuildTarget(BuildTarget.StandaloneWindows, this);
            settings.DeclareBuildTarget(BuildTarget.StandaloneWindows64, this);
            settings.DeclareBuildTarget(BuildTarget.WSAPlayer, this);
#endif
        }
예제 #3
0
        public override void DeclareUnityMappings(Settings settings)
        {
            settings.DeclareRuntimePlatform(RuntimePlatform.OSXPlayer, this);
#if UNITY_EDITOR
            settings.DeclareBuildTarget(BuildTarget.StandaloneOSX, this);
#endif
        }
예제 #4
0
        public override void DeclareUnityMappings(Settings settings)
        {
            settings.DeclareRuntimePlatform(RuntimePlatform.Android, this);

#if UNITY_EDITOR
            settings.DeclareBuildTarget(BuildTarget.Android, this);
#endif
        }
예제 #5
0
        public override void DeclareUnityMappings(Settings settings)
        {
            settings.DeclareRuntimePlatform(RuntimePlatform.LinuxPlayer, this);

#if UNITY_EDITOR
            settings.DeclareBuildTarget(BuildTarget.StandaloneLinux64, this);
#if !UNITY_2019_2_OR_NEWER
            settings.DeclareBuildTarget(BuildTarget.StandaloneLinux, this);
            settings.DeclareBuildTarget(BuildTarget.StandaloneLinuxUniversal, this);
#endif
#endif
        }
 public override void DeclareUnityMappings(Settings settings)
 {
     settings.DeclareRuntimePlatform(RuntimePlatform.OSXEditor, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.WindowsEditor, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.LinuxEditor, this);
 }
예제 #7
0
 public override void DeclareUnityMappings(Settings settings)
 {
     settings.DeclareRuntimePlatform(RuntimePlatform.IPhonePlayer, this);
     settings.DeclareRuntimePlatform(RuntimePlatform.Android, this);
 }
예제 #8
0
 public override void DeclareRuntimePlatforms(Settings settings)
 {
     settings.DeclareRuntimePlatform(RuntimePlatform.WebGLPlayer, this);
 }
예제 #9
0
 public override void DeclareRuntimePlatforms(Settings settings)
 {
     settings.DeclareRuntimePlatform(RuntimePlatform.Android, this);
 }