예제 #1
0
파일: MNP.cs 프로젝트: YahimaB/SpaceFlight
    public static void ShowPreloader(string title, string message)
    {
                #if UNITY_ANDROID
        MNAndroidNative.ShowPreloader(title, message, MNP_PlatformSettings.Instance.AndroidDialogTheme);
                #endif

                #if UNITY_IPHONE
        MNIOSNative.ShowPreloader();
                #endif
    }
예제 #2
0
    public static void ShowPreloader(string title, string message)
    {
                #if UNITY_ANDROID
        MNAndroidNative.ShowPreloader(title, message);
                #endif

                #if UNITY_IPHONE
        MNIOSNative.ShowPreloader();
                #endif

                #if UNITY_WP8 || UNITY_METRO
        WP8PopUps.PopUp.ShowPreLoader(100);
                #endif
    }