mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 12:47:38 +02:00
Dynamic editor theme (WIP), read desc for more info
Spaceball has been improved, you can now hit multiple balls at a time. Fork Lifter and Karate Man need this update soon as well. No idea why I did it the way I did. Time jumping also has been improved by pausing. Dynamic editor themes for custom theme support, however that won't be implemented until later.
This commit is contained in:
29
Assets/Scripts/LevelEditor/Theme.cs
Normal file
29
Assets/Scripts/LevelEditor/Theme.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RhythmHeavenMania.Editor
|
||||
{
|
||||
[Serializable]
|
||||
public class Theme
|
||||
{
|
||||
public string name;
|
||||
public Properties properties;
|
||||
|
||||
[Serializable]
|
||||
public class Properties
|
||||
{
|
||||
public string Layer1Col;
|
||||
public string Layer2Col;
|
||||
public string Layer3Col;
|
||||
public string Layer4Col;
|
||||
|
||||
public string EventSelectedCol;
|
||||
public string EventNormalCol;
|
||||
|
||||
public string BeatMarkerCol;
|
||||
public string CurrentTimeMarkerCol;
|
||||
|
||||
public string BoxSelectionCol;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user