A powerful,Customizable, and esay-to-use Popup UI for Unity
Video tutorial : https://youtu.be/TL8OQ8tc-gs
- All platforms (Standalone Builds, Android, iOS, WebGl, and more..)
using EasyUI.Toast ;
// Only Text :
Popup.Show ("Hello GameDevs") ;
// Title & Text :
Popup.Show ("Message", "Hello GameDevs") ;
Popup.Show ("Custom text color", "Hello, <color=red>This text is red<color>");
Popup.Dismiss();
Popup.Show (string text);
Popup.Show (string text, UnityAction onCloseAction);
Popup.Show (string title, string text);
Popup.Show (string title, string text, UnityAction onCloseAction);
Popup.Show (string title, string text, string buttonText);
Popup.Show (string title, string text, string buttonText, UnityAction onCloseAction);
Popup.Show (string title, string text, string buttonText, PopupColor buttonColor);
Popup.Show (string title, string text, string buttonText, PopupColor buttonColor, UnityAction onCloseAction);