mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
d96570513e
* modularize tabs-style menus * make remix properties use modular design * add persistent settings
24 lines
No EOL
672 B
C#
24 lines
No EOL
672 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
|
|
namespace HeavenStudio.Editor
|
|
{
|
|
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>()))
|
|
{
|
|
if (eventParameterManager != null)
|
|
eventParameterManager.canDisable = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |