forked from nikita/muzika-gromche
Add new track PickUpSticks
This commit is contained in:
parent
a5659fcb09
commit
3f06cc9aa6
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -9,6 +9,7 @@
|
||||||
- Added an accessibility option to reduce the intensity of overly distracting visual effects.
|
- Added an accessibility option to reduce the intensity of overly distracting visual effects.
|
||||||
- Seasonal content like New Year's songs (IkWilJe, Paarden, DiscoKapot) will only be available for selection during their respective seasons.
|
- Seasonal content like New Year's songs (IkWilJe, Paarden, DiscoKapot) will only be available for selection during their respective seasons.
|
||||||
- Reduced memory usage by almost 400 MB, thanks to loading audio clips on demand (not preloading all tracks at launch).
|
- Reduced memory usage by almost 400 MB, thanks to loading audio clips on demand (not preloading all tracks at launch).
|
||||||
|
- Added a new track PickUpSticks.
|
||||||
|
|
||||||
## MuzikaGromche 1337.9001.3 - v73 Happy New Year Edition
|
## MuzikaGromche 1337.9001.3 - v73 Happy New Year Edition
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,15 @@ namespace MuzikaGromche
|
||||||
[-0.5f, 0.5f, 8f, 15f, 16f, 24f, 29f, 30f, 36f, 37f, 38f, 44f, 47.5f],
|
[-0.5f, 0.5f, 8f, 15f, 16f, 24f, 29f, 30f, 36f, 37f, 38f, 44f, 47.5f],
|
||||||
[ 0f, 0.6f, 0f, 0f, 0.4f, 0f, 0f, 0.3f, 0f, 0f, 0.3f, 0f, 0f]);
|
[ 0f, 0.6f, 0f, 0f, 0.4f, 0f, 0f, 0.3f, 0f, 0f, 0.3f, 0f, 0f]);
|
||||||
|
|
||||||
|
private static readonly Palette PalettePickUpSticks = Palette
|
||||||
|
.Parse(["#FC933C", "#FC3C9D", "#EEA0A5", "#CA71FC", "#d01760"])
|
||||||
|
.Use(p =>
|
||||||
|
{
|
||||||
|
var energetic = p * 6 + new Palette(p.Colors[0..2]); // 32 colors
|
||||||
|
var slower = (p * 3 + new Palette([p.Colors[2]])).Stretch(2); // 16*2 colors
|
||||||
|
return energetic + slower;
|
||||||
|
});
|
||||||
|
|
||||||
public static readonly ISelectableTrack[] Tracks = [
|
public static readonly ISelectableTrack[] Tracks = [
|
||||||
new SelectableAudioTrack
|
new SelectableAudioTrack
|
||||||
{
|
{
|
||||||
|
|
@ -955,6 +964,56 @@ namespace MuzikaGromche
|
||||||
[0f, 0.5f, 0f]),
|
[0f, 0.5f, 0f]),
|
||||||
GameOverText = "[NEXT YEAR -- DEFINITELY]",
|
GameOverText = "[NEXT YEAR -- DEFINITELY]",
|
||||||
},
|
},
|
||||||
|
new SelectableTracksGroup
|
||||||
|
{
|
||||||
|
Name = "PickUpSticks",
|
||||||
|
Language = Language.ENGLISH,
|
||||||
|
Tracks =
|
||||||
|
[
|
||||||
|
new CoreAudioTrack
|
||||||
|
{
|
||||||
|
Name = "PickUpSticks1",
|
||||||
|
FileNameLoop = "PickUpSticksLoop.ogg",
|
||||||
|
AudioType = AudioType.OGGVORBIS,
|
||||||
|
WindUpTimer = 38.5f,
|
||||||
|
Bars = 16,
|
||||||
|
BeatsOffset = 0.2f,
|
||||||
|
ColorTransitionIn = 0.6f,
|
||||||
|
ColorTransitionOut = 0.3f,
|
||||||
|
ColorTransitionEasing = Easing.InOutCubic,
|
||||||
|
Palette = PalettePickUpSticks,
|
||||||
|
LoopOffset = 0,
|
||||||
|
FadeOutBeat = -2,
|
||||||
|
FadeOutDuration = 2,
|
||||||
|
FlickerLightsTimeSeries = [-36, -4, 32],
|
||||||
|
Lyrics = [],
|
||||||
|
DrunknessLoopOffsetTimeSeries = new([0f, 0.5f, 3f, 32f, 34f, 40f], [0f, 0.5f, 0f, 0f, 0.3f, 0f]),
|
||||||
|
CondensationLoopOffsetTimeSeries = new([23f, 28f, 31f, 34f, 38f, 52f], [0f, 0.6f, 0f, 0f, 0.7f, 0f]),
|
||||||
|
GameOverText = "[LOVE SUPPORT: OFFLINE]",
|
||||||
|
},
|
||||||
|
new CoreAudioTrack
|
||||||
|
{
|
||||||
|
Name = "PickUpSticks2",
|
||||||
|
FileNameLoop = "PickUpSticksLoop.ogg",
|
||||||
|
AudioType = AudioType.OGGVORBIS,
|
||||||
|
WindUpTimer = 38.47f,
|
||||||
|
Bars = 16,
|
||||||
|
BeatsOffset = 0.2f,
|
||||||
|
ColorTransitionIn = 0.6f,
|
||||||
|
ColorTransitionOut = 0.3f,
|
||||||
|
ColorTransitionEasing = Easing.InOutCubic,
|
||||||
|
Palette = PalettePickUpSticks,
|
||||||
|
LoopOffset = 0,
|
||||||
|
FadeOutBeat = -2,
|
||||||
|
FadeOutDuration = 2,
|
||||||
|
FlickerLightsTimeSeries = [-36, -4, 32],
|
||||||
|
Lyrics = [],
|
||||||
|
DrunknessLoopOffsetTimeSeries = new([0f, 0.5f, 3f, 32f, 34f, 40f], [0f, 0.5f, 0f, 0f, 0.3f, 0f]),
|
||||||
|
CondensationLoopOffsetTimeSeries = new([23f, 28f, 31f, 34f, 38f, 52f], [0f, 0.5f, 0f, 0f, 0.5f, 0f]),
|
||||||
|
GameOverText = "[LOVE SUPPORT: OFFLINE]",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
private static int GetCurrentSeed()
|
private static int GetCurrentSeed()
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ Muzika Gromche v1337.9001.0 has been updated to work with Lethal Company v73. Pr
|
||||||
|
|
||||||
## Playlist
|
## Playlist
|
||||||
|
|
||||||
English playlist features artists such as **Imagine Dragons, Fall Out Boy, Bon Jovi, Nirvana, Black Eyed Peas, LMFAO** (Party Rock Anthem / Every day I'm shufflin'), **CYBEЯIA** / "Cyberia" (Russian Hackers), and of course **Whistle** by Joel Merry / Flo Rida.
|
English playlist features artists such as **Imagine Dragons, Fall Out Boy, Bon Jovi, Nirvana, Black Eyed Peas, LMFAO** (Party Rock Anthem / Every day I'm shufflin'), **CYBEЯIA** / "Cyberia" (Russian Hackers), **t.A.T.u.**, and of course **Whistle** by Joel Merry / Flo Rida.
|
||||||
|
|
||||||
Russian playlist includes **Би-2, Витас, Глюк’oZa** (Глюкоза) & **Ленинград, Дискотека Авария, Noize MC, Oxxxymiron, Сплин, Пошлая Молли.**
|
Russian playlist includes **Би-2, Витас, Глюк’oZa** (Глюкоза) & **Ленинград, Дискотека Авария, Noize MC, Oxxxymiron, Сплин, Пошлая Молли.**
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue