NG_/Assets/Scripts/UI/事态感知/门禁信息/IsSlideshow.cs
2024-12-13 19:40:05 +08:00

31 lines
537 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
public class IsUserSlideshow : MonoBehaviour, IPointerClickHandler
{
public string name;
// 目标方法的对象
public GameObject TargetGameObject;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void OnPointerClick(PointerEventData eventData)
{
}
}