Add track ZmeiGorynich with custom palette and timings
This commit is contained in:
parent
a8761bf679
commit
909efa720f
Binary file not shown.
Binary file not shown.
|
@ -71,7 +71,20 @@ namespace MuzikaGromche
|
|||
WindUpTimer = 37f,
|
||||
Bars = 10,
|
||||
Palette = Palette.Parse(["#5986FE", "#FEFEDC", "#FF4FDF", "#FEFEDC", "#FFAA23", "#FEFEDC", "#F95A5A", "#FEFEDC"]),
|
||||
}
|
||||
},
|
||||
new Track
|
||||
{
|
||||
Name = "ZmeiGorynich",
|
||||
AudioType = AudioType.OGGVORBIS,
|
||||
Language = Language.KOREAN,
|
||||
WindUpTimer = 46.13f,
|
||||
Bars = 8,
|
||||
BeatsOffset = 0.1f,
|
||||
ColorTransitionIn = 0.4f,
|
||||
ColorTransitionOut = 0.4f,
|
||||
ColorTransitionEasing = Easing.OutExpo,
|
||||
Palette = Palette.Parse(["#4C8AC5", "#AF326A", "#0B1666", "#AFD2FC", "#C55297", "#540070"]),
|
||||
},
|
||||
];
|
||||
|
||||
public static Track ChooseTrack()
|
||||
|
@ -137,6 +150,7 @@ namespace MuzikaGromche
|
|||
{
|
||||
public static readonly Language ENGLISH = new("EN", "English");
|
||||
public static readonly Language RUSSIAN = new("RU", "Russian");
|
||||
public static readonly Language KOREAN = new("KO", "Korean");
|
||||
}
|
||||
|
||||
public readonly record struct Easing(string Name, Func<float, float> Eval)
|
||||
|
|
Loading…
Reference in New Issue