herbou / Unity_ProgressUI

Add a loading window to your game operations for better user-experience UX [ Unity engine ]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Loading window UI for your game operations

A Powerful,Customizable, and esay-to-use Progress UI for Unity

Loading window

Video tutorial : https://youtu.be/sipdow-FAgk



■ Supporting Platforms :

  • All platforms (Standalone Builds, Android, iOS, WebGl, and more..)

■ How to use? :

1- Make sure that you have TextMesh Pro in your project.

2- Import EasyUI_Progress package.

⚠️ NOTE! : No need to add any prefab to the scene

3- Add EasyUI.Progress namespace in your script :

using EasyUI.Progress ;

4- Now Simply write Progress.Show():

Progress.Show ("Please wait...") ;

Loading window


■ Change colors :

Built-in Colors ( Default, Red, Purple, Magenta, Blue, Green, Yellow, Orange ) :

Progress.Show ("Please wait...", ProgressColor.Blue) ;

■ Add details :

Progress.Show ("Please wait...", ProgressColor.Blue, true) ;
Progress.SetDetailsText ("Loading Assets...") ;

Loading window


■ Set progress :

Progress.SetProgressValue (70f) ; 

■ Change theme :

Go to project files :

Assets / Progress UI / Settings / ..





❤️ Donate

Paypal

About

Add a loading window to your game operations for better user-experience UX [ Unity engine ]

License:MIT License


Languages

Language:C# 100.0%