1
0
Fork 0

Add track Kach with custom palette and timings

This commit is contained in:
ivan tkachenko 2025-07-17 21:30:07 +03:00
parent ba0162b3e1
commit e1f19b3919
3 changed files with 25 additions and 0 deletions

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

Binary file not shown.

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

Binary file not shown.

View File

@ -221,6 +221,25 @@ namespace MuzikaGromche
return lyrics * 2 + instrumental * 2;
}),
},
new Track
{
Name = "Kach",
AudioType = AudioType.OGGVORBIS,
Language = Language.ENGLISH,
WindUpTimer = 48.30f,
Bars = 12,
// let them overlap, such that there is an actual hard cut to the next color
BeatsOffset = 0.4f,
ColorTransitionIn = 0.8f,
ColorTransitionOut = 0.4f,
ColorTransitionEasing = Easing.OutExpo,
Palette = Palette.Parse([
// pump it loudeeeeeeeeeer
"#7774DE", "#1EA59A", "#3BC457", "#3BC457",
"#CA6935", "#A82615", "#A7AA43", "#A7AA43",
"#4C2B81", "#2E802B", "#C952E7", "#C952E7",
]),
},
];
public static Track ChooseTrack()