forked from nikita/muzika-gromche
Add tracks GodMode and RiseAndShine with custom palette and timings
This commit is contained in:
parent
909efa720f
commit
694bc61dae
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -85,6 +85,32 @@ namespace MuzikaGromche
|
||||||
ColorTransitionEasing = Easing.OutExpo,
|
ColorTransitionEasing = Easing.OutExpo,
|
||||||
Palette = Palette.Parse(["#4C8AC5", "#AF326A", "#0B1666", "#AFD2FC", "#C55297", "#540070"]),
|
Palette = Palette.Parse(["#4C8AC5", "#AF326A", "#0B1666", "#AFD2FC", "#C55297", "#540070"]),
|
||||||
},
|
},
|
||||||
|
new Track
|
||||||
|
{
|
||||||
|
Name = "GodMode",
|
||||||
|
AudioType = AudioType.OGGVORBIS,
|
||||||
|
Language = Language.ENGLISH,
|
||||||
|
WindUpTimer = 40.38f,
|
||||||
|
Bars = 16,
|
||||||
|
BeatsOffset = 0.1f,
|
||||||
|
ColorTransitionIn = 0.5f,
|
||||||
|
ColorTransitionOut = 0.5f,
|
||||||
|
ColorTransitionEasing = Easing.OutCubic,
|
||||||
|
Palette = Palette.Parse(["#FBDBDB", "#4B81FF", "#564242", "#C90AE2", "#FBDBDB", "#61CBE3", "#564242", "#ED3131"]),
|
||||||
|
},
|
||||||
|
new Track
|
||||||
|
{
|
||||||
|
Name = "RiseAndShine",
|
||||||
|
AudioType = AudioType.OGGVORBIS,
|
||||||
|
Language = Language.ENGLISH,
|
||||||
|
WindUpTimer = 59.87f,
|
||||||
|
Bars = 16,
|
||||||
|
BeatsOffset = 0.1f,
|
||||||
|
ColorTransitionIn = 0.5f,
|
||||||
|
ColorTransitionOut = 0.5f,
|
||||||
|
ColorTransitionEasing = Easing.OutCubic,
|
||||||
|
Palette = Palette.Parse(["#FC6F3C", "#3CB0FC", "#FCD489", "#564242", "#FC6F3C", "#3CB0FC", "#63E98C", "#866868"]),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
public static Track ChooseTrack()
|
public static Track ChooseTrack()
|
||||||
|
|
Loading…
Reference in New Issue