2024-10-28 01:06:41 +08:00
|
|
|
|
using System;
|
|
|
|
|
using Sirenix.OdinInspector;
|
2024-10-18 01:17:48 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
2024-10-18 18:30:22 +08:00
|
|
|
|
using UnityEngine.EventSystems;
|
2024-10-28 01:06:41 +08:00
|
|
|
|
using UnityEngine.UI;
|
2024-10-18 01:17:48 +08:00
|
|
|
|
|
|
|
|
|
namespace Ether
|
|
|
|
|
{
|
2024-10-28 01:06:41 +08:00
|
|
|
|
[RequireComponent(typeof(Image))]
|
|
|
|
|
public class ToggleEx : SerializedMonoBehaviour, IPointerClickHandler, IPointerDownHandler, IPointerUpHandler
|
2024-10-18 18:30:22 +08:00
|
|
|
|
{
|
2024-10-28 01:06:41 +08:00
|
|
|
|
[LabelText("选择状态显示")] [PropertyOrder(1)]
|
2024-10-18 18:30:22 +08:00
|
|
|
|
public GameObject checkRoot;
|
2024-10-18 01:17:48 +08:00
|
|
|
|
|
2024-10-28 01:06:41 +08:00
|
|
|
|
[LabelText("非选择状态显示")][PropertyOrder(2)]
|
2024-10-18 18:30:22 +08:00
|
|
|
|
public GameObject uncheckRoot;
|
|
|
|
|
|
2024-10-28 01:06:41 +08:00
|
|
|
|
[PropertySpace(20)]
|
2024-10-18 18:30:22 +08:00
|
|
|
|
[LabelText("选择状态")]
|
2024-10-28 01:06:41 +08:00
|
|
|
|
[ShowInInspector]
|
|
|
|
|
[PropertyOrder(3)]
|
|
|
|
|
public bool IsOn
|
2024-10-18 18:30:22 +08:00
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
2024-10-28 01:06:41 +08:00
|
|
|
|
isOn = value;
|
2024-10-18 18:30:22 +08:00
|
|
|
|
SetIsOnState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get => isOn;
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-28 01:06:41 +08:00
|
|
|
|
private bool isOn;
|
|
|
|
|
|
|
|
|
|
[PropertySpace(20)]
|
|
|
|
|
|
|
|
|
|
[LabelText("组")]
|
|
|
|
|
[PropertyOrder(4)]
|
|
|
|
|
public ToggleGroupEx toggleGroup;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 值改变事件
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ActionEvent<bool> OnValueChange { get; } = new ActionEvent<bool>();
|
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
if (toggleGroup)
|
|
|
|
|
{
|
|
|
|
|
toggleGroup.AddToggle(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-18 18:30:22 +08:00
|
|
|
|
public void OnPointerClick(PointerEventData eventData)
|
|
|
|
|
{
|
2024-10-28 01:06:41 +08:00
|
|
|
|
if (toggleGroup != null && IsOn)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-18 18:30:22 +08:00
|
|
|
|
isOn = !isOn;
|
|
|
|
|
|
|
|
|
|
SetIsOnState();
|
2024-10-28 01:06:41 +08:00
|
|
|
|
OnValueChange.Invoke(IsOn);
|
2024-10-18 18:30:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SetIsOnState()
|
|
|
|
|
{
|
2024-10-28 01:06:41 +08:00
|
|
|
|
checkRoot?.SetActive(isOn);
|
|
|
|
|
uncheckRoot?.SetActive(!isOn);
|
|
|
|
|
|
|
|
|
|
if (isOn && toggleGroup != null)
|
|
|
|
|
{
|
|
|
|
|
toggleGroup.SetToggleSelected(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 在编辑器模式下,当脚本中的公共变量发生变化时调用此方法
|
|
|
|
|
private void OnValidate()
|
|
|
|
|
{
|
|
|
|
|
// 如果在编辑器模式下,提示用户检查这些字段是否已分配
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
if (uncheckRoot == null)
|
|
|
|
|
{
|
|
|
|
|
Transform trans = transform.Find("Uncheck");
|
|
|
|
|
if (trans != null)
|
|
|
|
|
{
|
|
|
|
|
uncheckRoot = trans.gameObject;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
uncheckRoot = new GameObject("Uncheck", typeof(RectTransform));
|
|
|
|
|
uncheckRoot.transform.SetParent(transform);
|
|
|
|
|
}
|
|
|
|
|
uncheckRoot.transform.localPosition = Vector3.zero;
|
|
|
|
|
RectTransform rect = uncheckRoot.GetComponent<RectTransform>();
|
|
|
|
|
rect.anchorMin = Vector2.zero;
|
|
|
|
|
rect.anchorMax = new Vector2(1, 1);
|
|
|
|
|
rect.sizeDelta = Vector2.zero;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (checkRoot == null)
|
|
|
|
|
{
|
|
|
|
|
Transform trans = transform.Find("Check");
|
|
|
|
|
if (trans != null)
|
|
|
|
|
{
|
|
|
|
|
checkRoot = trans.gameObject;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
checkRoot = new GameObject("Check", typeof(RectTransform));
|
|
|
|
|
checkRoot.transform.SetParent(transform);
|
|
|
|
|
}
|
|
|
|
|
checkRoot.transform.localPosition = Vector3.zero;
|
|
|
|
|
RectTransform rect = checkRoot.GetComponent<RectTransform>();
|
|
|
|
|
rect.anchorMin = Vector2.zero;
|
|
|
|
|
rect.anchorMax = new Vector2(1, 1);
|
|
|
|
|
rect.sizeDelta = Vector2.zero;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Image img = GetComponent<Image>();
|
|
|
|
|
if (img.color.a != 0)
|
|
|
|
|
{
|
|
|
|
|
img.color = new Color(1, 1, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnPointerDown(PointerEventData eventData)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnPointerUp(PointerEventData eventData)
|
|
|
|
|
{
|
|
|
|
|
|
2024-10-18 18:30:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-18 01:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
|