public void Show(string title, string message, PlatformDialog.Type buttonType) { DialogShowWithTitle(title, message, buttonType.ToInt()); }
public void Show(string message, PlatformDialog.Type buttonType) { using (AndroidJavaClass javaClass = new AndroidJavaClass("unity.plugins.dialog.NativeDialog")) { javaClass.CallStatic("ShowDialog", message, buttonType.ToInt()); } }
public void Show(string message, PlatformDialog.Type buttonType) { DialogShowWithMessage(message, buttonType.ToInt()); }