19 lines
399 B
C#
19 lines
399 B
C#
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();
|
|
}
|
|
}
|
|
} |