Tracking Progress
Adding a Progress Tracker
Step 1: Create a Float
private static float progress;Step 2: Creating the Tracker
var process = new LoadingProgressTracker("Please wait...", () => progress);Step 3: Adding the Tracker
// Where sceneName is a string that contains the name of the scene you want to load
LoadingScreen.Instance.Load(sceneName, process);Last updated