yyl
2025-05-16 f4c97339a01fdd75d8b862be572eefe66bd51d5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//--------------------------------------------------------
//    [Author]:           第二世界
//    [  Date ]:           Tuesday, October 10, 2017
//--------------------------------------------------------
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;
 
public class ToggleButtonGroup : MonoBehaviour
{
 
    List<ToggleButton> toggleButtons = new List<ToggleButton>();
 
    public void Register(ToggleButton _toggleButton)
    {
        if (!toggleButtons.Contains(_toggleButton))
        {
            toggleButtons.Add(_toggleButton);
        }
    }
 
    public void UnRegister(ToggleButton _toggleButton)
    {
        if (toggleButtons.Contains(_toggleButton))
        {
            toggleButtons.Remove(_toggleButton);
        }
    }
 
    public void NotifyToggleOn(ToggleButton _toggleButton)
    {
        if (_toggleButton.isOn)
        {
            for (int i = 0; i < toggleButtons.Count; i++)
            {
                var toggleButton = toggleButtons[i];
                if (toggleButton != _toggleButton)
                {
                    toggleButton.isOn = false;
                }
            }
        }
    }
 
}