com.soviby.unity.ui.ugui-to.../Assets/Scripts/Manager/ImageActorManager.cs
2024-10-08 23:19:05 +08:00

20 lines
407 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using UnityEngine;
namespace UguiToolkit
{
public class ImageActorManager : MonoBehaviour
{
private void Start()
{
// 初始化所有ImageActor
}
private void Update()
{
// 检测Image是否被选中并长按2秒进入选中状态
// 选中状态下每0.3秒检测
}
}
}