You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
670 B
30 lines
670 B
12 months ago
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
[RequireComponent(typeof(Toggle))]
|
||
|
public class DeviceMenuToggle : MonoBehaviour
|
||
|
{
|
||
|
public DeviceType menuType;
|
||
|
private Toggle M_toggle;
|
||
|
void Start()
|
||
|
{
|
||
|
M_toggle = GetComponent<Toggle>();
|
||
|
M_toggle.onValueChanged.AddListener(M_toggle_ValueChanged);
|
||
|
}
|
||
|
|
||
|
private void M_toggle_ValueChanged(bool isOn)
|
||
|
{
|
||
|
if (isOn)
|
||
|
{
|
||
|
DevicePanelManager.Instance.ShowBindList(menuType);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
DevicePanelManager.Instance.ShowBindList(DeviceType.空);
|
||
|
}
|
||
|
}
|
||
|
}
|