mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-13 13:15:08 +00:00
89 lines
2.2 KiB
C#
89 lines
2.2 KiB
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
using HeavenStudio;
|
||
|
using HeavenStudio.Editor;
|
||
|
using HeavenStudio.Editor.Track;
|
||
|
using TMPro;
|
||
|
|
||
|
public class VolumeDialog : Dialog
|
||
|
{
|
||
|
VolumeTimelineObj volumeObj;
|
||
|
|
||
|
[SerializeField] Button deleteButton;
|
||
|
[SerializeField] Slider volumeSlider;
|
||
|
[SerializeField] TMP_InputField volumeInput;
|
||
|
|
||
|
public void SwitchVolumeDialog()
|
||
|
{
|
||
|
if (dialog.activeSelf)
|
||
|
{
|
||
|
volumeObj = null;
|
||
|
dialog.SetActive(false);
|
||
|
Editor.instance.inAuthorativeMenu = false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Editor.instance.inAuthorativeMenu = true;
|
||
|
ResetAllDialogs();
|
||
|
dialog.SetActive(true);
|
||
|
|
||
|
volumeSlider.maxValue = 100;
|
||
|
volumeSlider.minValue = 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void RefreshDialog()
|
||
|
{
|
||
|
if (volumeObj != null)
|
||
|
{
|
||
|
volumeInput.text = volumeObj.chartEntity["volume"].ToString("F");
|
||
|
volumeSlider.value = volumeObj.chartEntity["volume"];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void SetVolumeObj(VolumeTimelineObj volumeObj)
|
||
|
{
|
||
|
this.volumeObj = volumeObj;
|
||
|
deleteButton.gameObject.SetActive(!volumeObj.first);
|
||
|
|
||
|
volumeSlider.value = volumeObj.chartEntity["volume"];
|
||
|
volumeInput.text = volumeObj.chartEntity["volume"].ToString("F");
|
||
|
}
|
||
|
|
||
|
public void DeleteVolume()
|
||
|
{
|
||
|
if (volumeObj != null)
|
||
|
{
|
||
|
volumeObj.Remove();
|
||
|
}
|
||
|
if (dialog.activeSelf)
|
||
|
{
|
||
|
SwitchVolumeDialog();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void VolumeSliderUpdate()
|
||
|
{
|
||
|
if (volumeObj != null)
|
||
|
{
|
||
|
volumeObj.SetVolume(System.MathF.Round(volumeSlider.value, 2));
|
||
|
volumeInput.text = volumeObj.chartEntity["volume"].ToString("F");
|
||
|
volumeSlider.value = volumeObj.chartEntity["volume"];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void SetVolume()
|
||
|
{
|
||
|
if (volumeObj != null)
|
||
|
{
|
||
|
float volume = float.Parse(volumeInput.text);
|
||
|
volumeObj.SetVolume(volume);
|
||
|
volumeInput.text = volumeObj.chartEntity["volume"].ToString("F");
|
||
|
volumeSlider.value = volumeObj.chartEntity["volume"];
|
||
|
}
|
||
|
}
|
||
|
}
|