using System.Collections; using System.Collections.Generic; using Ichni.UI; using Michsky.MUIP; using UnityEngine; namespace Ichni.RhythmGame.UI { public class GameLoadingCanvas : UIPageBase { public ProgressBar progressBar; public void SetProgress(float value) { progressBar.currentPercent = value; progressBar.UpdateUI(); } } }