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