From 38cfb5f5e7d0d50a0fa47f692f04735baebc473a Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Wed, 16 Jul 2025 14:51:44 +0300 Subject: [PATCH] Add track Peretasovka with custom palette and timings --- Assets/PeretasovkaLoop.ogg | 3 +++ Assets/PeretasovkaStart.ogg | 3 +++ MuzikaGromche/Plugin.cs | 13 +++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 Assets/PeretasovkaLoop.ogg create mode 100644 Assets/PeretasovkaStart.ogg diff --git a/Assets/PeretasovkaLoop.ogg b/Assets/PeretasovkaLoop.ogg new file mode 100644 index 0000000..28d08f2 --- /dev/null +++ b/Assets/PeretasovkaLoop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e164e59a8fcfab771a836e3fcc8765ba56f71bdb83ff2d4012f3d3d63e6ddba +size 207710 diff --git a/Assets/PeretasovkaStart.ogg b/Assets/PeretasovkaStart.ogg new file mode 100644 index 0000000..b37082b --- /dev/null +++ b/Assets/PeretasovkaStart.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:170f3d4bf78b73f7ceed0f12fc7a6e46d0ac4e0cc2e2e0d089a31805b855a0f5 +size 858033 diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 1a56bd5..5fdbbb0 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -124,6 +124,19 @@ namespace MuzikaGromche ColorTransitionEasing = Easing.InCubic, Palette = Palette.Parse(["#FFD3E3", "#78A0FF", "#FFD3E3", "#74A392", "#FFD3E3", "#E4B082", "#FFD3E3", "#E277AA"]), }, + new Track + { + Name = "Peretasovka", + AudioType = AudioType.OGGVORBIS, + Language = Language.ENGLISH, + WindUpTimer = 59.07f, + Bars = 8, + BeatsOffset = 0.3f, + ColorTransitionIn = 0.4f, + ColorTransitionOut = 0.4f, + ColorTransitionEasing = Easing.OutExpo, + Palette = Palette.Parse(["#65C7FA", "#FCEB3C", "#89FC8F", "#FEE9E9", "#FC3C9D", "#FCEB3C", "#89FC8F", "#FC3C9D"]), + }, ]; public static Track ChooseTrack()