2022-02-08 01:07:03 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.EventSystems;
|
|
|
|
|
2022-03-14 14:21:05 +00:00
|
|
|
namespace HeavenStudio.Editor
|
2022-02-08 01:07:03 +00:00
|
|
|
{
|
|
|
|
public class DisableSelectOnHover : MonoBehaviour
|
|
|
|
{
|
|
|
|
public EventParameterManager eventParameterManager;
|
|
|
|
|
|
|
|
private void LateUpdate()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < transform.childCount; i++)
|
|
|
|
{
|
|
|
|
if (Editor.MouseInRectTransform(transform.GetChild(i).GetComponent<RectTransform>()))
|
|
|
|
{
|
2023-01-24 19:31:49 +00:00
|
|
|
if (eventParameterManager != null)
|
|
|
|
eventParameterManager.canDisable = false;
|
2022-02-08 01:07:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|