18 lines
358 B
C#
18 lines
358 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ModelShow : BaseShow
|
|
{
|
|
/// <summary>
|
|
/// 鼠标单击事件
|
|
/// </summary>
|
|
public override void OnClick()
|
|
{
|
|
if (BaseController.CanControl && CanClick)
|
|
{
|
|
ModelPlayerEx.Instance.ShowModel(info, gameObject);
|
|
}
|
|
}
|
|
}
|