修改设置界面
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class TogglePanel : MonoBehaviour
|
||||
{
|
||||
[SerializeField]
|
||||
private GameObject dropDownPanelObj;
|
||||
|
||||
public void Button_ToggleDropDownPanel()
|
||||
{
|
||||
dropDownPanelObj.SetActive(!dropDownPanelObj.activeSelf);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user