Files
TaiWan/Assets/Roaming/Scripts/Show/ModelShow.cs

18 lines
358 B
C#
Raw Normal View History

2025-10-31 15:20:38 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ModelShow : BaseShow
{
/// <summary>
/// <20><><EFBFBD><EFBFBD><EAB5A5><EFBFBD>¼<EFBFBD>
/// </summary>
public override void OnClick()
{
if (BaseController.CanControl && CanClick)
{
ModelPlayerEx.Instance.ShowModel(info, gameObject);
}
}
}