mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
27 lines
580 B
C#
27 lines
580 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using HeavenStudio.Editor.Track;
|
||
|
|
||
|
using TMPro;
|
||
|
|
||
|
namespace HeavenStudio.Editor
|
||
|
{
|
||
|
public class SettingsDialog : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField] private GameObject settingsMenu;
|
||
|
|
||
|
private void Start() {}
|
||
|
|
||
|
public void SwitchSettingsDialog()
|
||
|
{
|
||
|
if(settingsMenu.activeSelf) {
|
||
|
settingsMenu.SetActive(false);
|
||
|
} else {
|
||
|
settingsMenu.SetActive(true);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void Update() {}
|
||
|
}
|
||
|
}
|