58 lines
1.0 KiB
C#
58 lines
1.0 KiB
C#
![]() |
// ***********************************************************************
|
|||
|
// Assembly : Game
|
|||
|
// Author : Kimch
|
|||
|
// Created : 2021-04-22
|
|||
|
// Description :
|
|||
|
// Last Modified By :
|
|||
|
// Last Modified On :
|
|||
|
// ***********************************************************************
|
|||
|
// <copyright file= "GetBookBox" company="Kunpo"></copyright>
|
|||
|
// <summary></summary>
|
|||
|
// ***********************************************************************
|
|||
|
|
|||
|
namespace G.UI
|
|||
|
{
|
|||
|
public partial class GetBookBox : KUIWindow
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public GetBookBox()
|
|||
|
: base(UILayer.kPopup, UIMode.kNone)
|
|||
|
{
|
|||
|
uiPath = "ui_w_get_book";
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Method
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Unity
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public override void Awake()
|
|||
|
{
|
|||
|
InitView();
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public override void OnEnable()
|
|||
|
{
|
|||
|
RefreshView();
|
|||
|
UnityEngine.Time.timeScale = 0f;
|
|||
|
}
|
|||
|
|
|||
|
public override void OnDisable()
|
|||
|
{
|
|||
|
UnityEngine.Time.timeScale = 1f;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|