QuanYi/Assets/_Scripts/Demo/ShiTuDemo/Scripts/ShiTuShowModelItem.cs
2025-05-09 10:20:30 +08:00

13 lines
312 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ZXKFramework;
public class ShiTuShowModelItem : MonoBehaviour
{
private IEnumerator OnMouseUp()
{
yield return new WaitForFixedUpdate();
Game.Instance.fsm.ChangeState<ShiTuStateShowModel>(name);
}
}