1
0
Fork 0

Add a new track Arcane

This commit is contained in:
ivan tkachenko 2026-01-23 05:23:53 +02:00
parent 4cc187b525
commit 5258b806d4
4 changed files with 34 additions and 0 deletions

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

Binary file not shown.

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

Binary file not shown.

View File

@ -6,6 +6,7 @@
- Turns out, client-side vanilla-compat mode can never be perfectly timed, so don't expect much without a modded host.
- Removed an existing track Yalgaar.
- Merged two config options into one: Reduce Visual Effects & Display Lyrics.
- Added a new track Arcane.
## MuzikaGromche 1337.9001.67 - LocalHost Edition

View File

@ -1034,5 +1034,32 @@ public static class Library
// GameOverText"[ LOVE GONNA GET US ]",
GameOverText = "[ O NOES, THEY GOT US ]",
},
new SelectableAudioTrack
{
Name = "Arcane",
AudioType = AudioType.OGGVORBIS,
Language = Language.ENGLISH,
WindUpTimer = 38.28f,
Bars = 8,
BeatsOffset = 0f,
ColorTransitionIn = 0.2f,
ColorTransitionOut = 0.3f,
ColorTransitionEasing = Easing.InOutExpo,
Palette = Palette.Parse([
"#F0FBFF", "#0B95FF", "#A8F5E2", "#B79BF2", "#fed2e1",
]),
LoopOffset = 0,
FadeOutBeat = -1.5f,
FadeOutDuration = 1.5f,
FlickerLightsTimeSeries = [-48.1f, -44.1f, -16, 15.9f, 31.9f],
Lyrics = [],
DrunknessLoopOffsetTimeSeries = new(
[-48f, -47.75f, -44f, -43.75f, -36f, /* 1 */ 0f, 0.25f, 6f, /* 2 */ 8f, 8.25f, 14f, /* 3 */ 16f, 16.25f, 22f, /* 4 */ 24f, 24.25f, 30f],
[ 0f, 0.5f, 0.2f, 0.5f, 0f, /* 1 */ 0f, 0.4f, 0f, /* 2 */ 0f, 0.4f, 0f, /* 3 */ 0f, 0.4f, 0f, /* 4 */ 0f, 0.4f, 0f]),
CondensationLoopOffsetTimeSeries = new(
[24f, 24.25f, 30f],
[ 0f, 0.5f, 0f]),
GameOverText = "[LIFE SUPPORT: HEXTECH]",
},
];
}