Пример #1
0
    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
    }