mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
71 lines
No EOL
2.1 KiB
C#
71 lines
No EOL
2.1 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
using Newtonsoft.Json;
|
|
using TMPro;
|
|
|
|
using Starpelly;
|
|
|
|
using RhythmHeavenMania.Editor.Track;
|
|
|
|
namespace RhythmHeavenMania.Editor
|
|
{
|
|
public class EditorTheme : MonoBehaviour
|
|
{
|
|
public TextAsset ThemeTXT;
|
|
public static Theme theme;
|
|
|
|
[Header("Components")]
|
|
[SerializeField] private Image layer;
|
|
[SerializeField] private Image tempoLayer;
|
|
[SerializeField] private Image musicLayer;
|
|
|
|
private void Awake()
|
|
{
|
|
theme = JsonConvert.DeserializeObject<Theme>(ThemeTXT.text);
|
|
}
|
|
|
|
private void Start()
|
|
{
|
|
tempoLayer.GetComponent<Image>().color = theme.properties.TempoLayerCol.Hex2RGB();
|
|
musicLayer.GetComponent<Image>().color = theme.properties.MusicLayerCol.Hex2RGB();
|
|
Tooltip.AddTooltip(tempoLayer.gameObject, $"Tempo Track");
|
|
Tooltip.AddTooltip(musicLayer.gameObject, $"Music Volume Track");
|
|
|
|
|
|
layer.gameObject.SetActive(false);
|
|
|
|
for (int i = 0; i < Timeline.instance.LayerCount; i++)
|
|
{
|
|
GameObject layer = Instantiate(this.layer.gameObject, this.layer.transform.parent);
|
|
layer.SetActive(true);
|
|
layer.transform.GetChild(0).GetComponent<TMP_Text>().text = $"Track {i + 1}";
|
|
|
|
Color c = Color.white;
|
|
|
|
switch (i)
|
|
{
|
|
case 0:
|
|
c = theme.properties.Layer1Col.Hex2RGB();
|
|
break;
|
|
case 1:
|
|
c = theme.properties.Layer2Col.Hex2RGB();
|
|
break;
|
|
case 2:
|
|
c = theme.properties.Layer3Col.Hex2RGB();
|
|
break;
|
|
case 3:
|
|
c = theme.properties.Layer4Col.Hex2RGB();
|
|
break;
|
|
}
|
|
|
|
layer.GetComponent<Image>().color = c;
|
|
Tooltip.AddTooltip(layer, $"Track {i + 1}");
|
|
}
|
|
Destroy(layer);
|
|
}
|
|
}
|
|
|
|
} |