mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
30 lines
601 B
C#
30 lines
601 B
C#
namespace MoleMole
|
|
{
|
|
public class MonoLoadingCanvas : BaseMonoCanvas
|
|
{
|
|
public void Awake()
|
|
{
|
|
Singleton<MainUIManager>.Instance.SetMainCanvas(this);
|
|
}
|
|
|
|
public override void Start()
|
|
{
|
|
LoadingPageContext context = new LoadingPageContext(Singleton<MainUIManager>.Instance.bDestroyUntilNotify);
|
|
Singleton<MainUIManager>.Instance.ShowPage(context);
|
|
base.Start();
|
|
}
|
|
|
|
public override void PlayVideo(CgDataItem cgDataItem)
|
|
{
|
|
}
|
|
|
|
public void OnInLevelVideoBeginCallback(CgDataItem cgDataItem)
|
|
{
|
|
}
|
|
|
|
public void OnInLevelVideoEndCallback(CgDataItem cgDataItem)
|
|
{
|
|
}
|
|
}
|
|
}
|