50 lines
929 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Unity
// Author : Kimch
// Created : 2017-11-11
//
// Last Modified By : Kimch
// Last Modified On :
// ***********************************************************************
// <copyright file= "LoadWindow" company=""></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
/// <summary>
///
/// </summary>
public partial class LoadWindow : KUIWindow
{
#region Constructor
public LoadWindow()
: base(UILayer.kNormal, UIMode.kSequenceRemove)
{
uiPath = "ui_w_loading";
}
#endregion
#region Method
public override void Awake()
{
InitView();
}
public override void OnEnable()
{
RefreshModel();
RefreshView();
}
public override void Update()
{
UpdateView();
}
#endregion
}
}