コード例 #1
0
 public static void ChangePlatformAndroid()
 {
     PrjHelper.ChangePlatform(BuildTarget.Android);
 }
コード例 #2
0
 public static void ChangePlatformIos()
 {
     PrjHelper.ChangePlatform(BuildTarget.iOS);
 }
コード例 #3
0
 public static void ChangePlatformUwp()
 {
     PrjHelper.ChangePlatform(BuildTarget.WSAPlayer);
 }
コード例 #4
0
 public static void ChangePlatformWin()
 {
     PrjHelper.ChangePlatform(BuildTarget.StandaloneWindows);
 }
コード例 #5
0
 public static void ChangePlatformLinux()
 {
     PrjHelper.ChangePlatform(BuildTarget.StandaloneLinux);
 }
コード例 #6
0
 public static void ChangePlatformOsX()
 {
     PrjHelper.ChangePlatform(BuildTarget.StandaloneOSXUniversal);
 }
コード例 #7
0
 public static void ChangePlatformWebGL()
 {
     PrjHelper.ChangePlatform(BuildTarget.WebGL);
 }
コード例 #8
0
        public static void ChangePlatformLumin()
        {
            var lumin = (BuildTarget)Enum.Parse(typeof(BuildTarget), "Lumin");

            PrjHelper.ChangePlatform(lumin);
        }
コード例 #9
0
 public static void ChangePlatformWebplayer()
 {
     PrjHelper.ChangePlatform(BuildTarget.WebPlayer);
 }