diff --git a/Assets/Beha1Intro.ogg b/Assets/Beha1Intro.ogg new file mode 100644 index 0000000..f95bab1 --- /dev/null +++ b/Assets/Beha1Intro.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c25d9619197a036d82e584841a3a9496c3e9884e1355ac213ccfa1ca0f061a +size 635941 diff --git a/Assets/Beha2Intro.ogg b/Assets/Beha2Intro.ogg new file mode 100644 index 0000000..dfbf8de --- /dev/null +++ b/Assets/Beha2Intro.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6530c575506ad3f874e7e26830e2230407d77c64ba3a86071f835ddefefd18b8 +size 674922 diff --git a/Assets/Beha3Intro.ogg b/Assets/Beha3Intro.ogg new file mode 100644 index 0000000..d5dd1bc --- /dev/null +++ b/Assets/Beha3Intro.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5ef89a57a205cabdefbafc5ffd8fb5be4202fd17e6d60a47bf54ffc5d9cdbf +size 634478 diff --git a/Assets/BehaLoop.ogg b/Assets/BehaLoop.ogg new file mode 100644 index 0000000..3901214 --- /dev/null +++ b/Assets/BehaLoop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b423689440bcecc2b8ea33d7d948595ee08dbe2848c6950dda050a988d349223 +size 337181 diff --git a/CHANGELOG.md b/CHANGELOG.md index ac23462..f0ec570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,13 @@ ## MuzikaGromche 1337.420.9001 - Added support for tracks to rotate between multiple audio variants during a round. +- Added a new track Beha with three different variants of intro. ## MuzikaGromche 1337.420.69 - It's All DiscoNnected Edition -- Fix harmless but annoying errors in BepInEx console output. +- Fixed harmless but annoying errors in BepInEx console output. - Improve smoothness of color animations. -- Add a new track. +- Added a new track BeefLiver. ## MuzikaGromche 1337.69.420 - It's All Connected Edition diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index a77f774..c04cb9c 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -496,6 +496,75 @@ namespace MuzikaGromche FlickerLightsTimeSeries = [-48, -40, -4.5f, 44], Lyrics = [], }, + new SelectableTracksGroup + { + Name = "Beha", + Language = Language.RUSSIAN, + IsExplicit = true, + Tracks = + [ + new CoreAudioTrack + { + Name = "Beha1", + FileNameLoop = "BehaLoop.ogg", + AudioType = AudioType.OGGVORBIS, + WindUpTimer = 35.23f, + Beats = 8 * 4 + 2, + BeatsOffset = 0.0f, + ColorTransitionIn = 0.1f, + ColorTransitionOut = 0.6f, + ColorTransitionEasing = Easing.OutExpo, + Palette = Palette.Parse([ + "#9554F9", "#3769FD", "#E43B65", "#59CFEA", "#7F3FEE", "#C831FE", + ]), + LoopOffset = 0, + FadeOutBeat = -4, + FadeOutDuration = 3.9f, + FlickerLightsTimeSeries = [-6, 16.5f], + Lyrics = [], + }, + new CoreAudioTrack + { + Name = "Beha2", + FileNameLoop = "BehaLoop.ogg", + AudioType = AudioType.OGGVORBIS, + WindUpTimer = 38.16f, + Beats = 8 * 4 + 2, + BeatsOffset = 0.0f, + ColorTransitionIn = 0.1f, + ColorTransitionOut = 0.6f, + ColorTransitionEasing = Easing.OutExpo, + Palette = Palette.Parse([ + "#9554F9", "#3769FD", "#E43B65", "#59CFEA", "#7F3FEE", "#C831FE", + ]), + LoopOffset = 0, + FadeOutBeat = -4, + FadeOutDuration = 3.9f, + FlickerLightsTimeSeries = [-6, 16.5f], + Lyrics = [], + }, + new CoreAudioTrack + { + Name = "Beha3", + FileNameLoop = "BehaLoop.ogg", + AudioType = AudioType.OGGVORBIS, + WindUpTimer = 35.21f, + Beats = 8 * 4 + 2, + BeatsOffset = 0.0f, + ColorTransitionIn = 0.1f, + ColorTransitionOut = 0.6f, + ColorTransitionEasing = Easing.OutExpo, + Palette = Palette.Parse([ + "#9554F9", "#3769FD", "#E43B65", "#59CFEA", "#7F3FEE", "#C831FE", + ]), + LoopOffset = 0, + FadeOutBeat = -4, + FadeOutDuration = 3.9f, + FlickerLightsTimeSeries = [-6, 16.5f], + Lyrics = [], + }, + ], + }, ]; public static ISelectableTrack ChooseTrack()