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