shaoxiadiablo/Assets/AFramework/Editor/Templates/81-C# Script-UIScript.cs.txt

68 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

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