Add track Song2 with custom palette and timings

This commit is contained in:
ivan tkachenko 2025-07-16 14:49:40 +03:00
parent 694bc61dae
commit b86c50a848
3 changed files with 19 additions and 0 deletions

BIN
Assets/Song2Loop.ogg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Assets/Song2Start.ogg (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -111,6 +111,19 @@ namespace MuzikaGromche
ColorTransitionEasing = Easing.OutCubic,
Palette = Palette.Parse(["#FC6F3C", "#3CB0FC", "#FCD489", "#564242", "#FC6F3C", "#3CB0FC", "#63E98C", "#866868"]),
},
new Track
{
Name = "Song2",
AudioType = AudioType.OGGVORBIS,
Language = Language.RUSSIAN,
WindUpTimer = 38.63f,
Beats = 17 * 2,
BeatsOffset = 0.1f,
ColorTransitionIn = 0.3f,
ColorTransitionOut = 0.3f,
ColorTransitionEasing = Easing.InCubic,
Palette = Palette.Parse(["#FFD3E3", "#78A0FF", "#FFD3E3", "#74A392", "#FFD3E3", "#E4B082", "#FFD3E3", "#E277AA"]),
},
];
public static Track ChooseTrack()