From 3923c36da237b22b035ccd296dadb5e5a2c76fbe Mon Sep 17 00:00:00 2001 From: Vigers Ray Date: Mon, 20 Jan 2025 05:57:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B5=D1=80=D0=BD=D1=83=D0=BB=20=D0=BA?= =?UTF-8?q?=D0=B0=D0=B9=D1=84=D0=BE=D0=B2=D1=8B=D0=B5=20=D0=B7=D0=B2=D1=83?= =?UTF-8?q?=D0=BA=D0=B8=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9?= =?UTF-8?q?=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Shared/CCVar/CCVars.Interface.cs | 4 ++-- .../{buttonclick.ogg => button_click.ogg} | Bin .../{buttonrollover.ogg => button_hover.ogg} | Bin 3 files changed, 2 insertions(+), 2 deletions(-) rename Resources/Audio/_Sunrise/UserInterface/{buttonclick.ogg => button_click.ogg} (100%) rename Resources/Audio/_Sunrise/UserInterface/{buttonrollover.ogg => button_hover.ogg} (100%) diff --git a/Content.Shared/CCVar/CCVars.Interface.cs b/Content.Shared/CCVar/CCVars.Interface.cs index 569303f1cf..3779f521c7 100644 --- a/Content.Shared/CCVar/CCVars.Interface.cs +++ b/Content.Shared/CCVar/CCVars.Interface.cs @@ -8,13 +8,13 @@ public sealed partial class CCVars /// The sound played when clicking a UI button /// public static readonly CVarDef UIClickSound = - CVarDef.Create("interface.click_sound", "/Audio/UserInterface/click.ogg", CVar.REPLICATED); + CVarDef.Create("interface.click_sound", "/Audio/_Sunrise/UserInterface/button_click.ogg", CVar.REPLICATED); /// /// The sound played when the mouse hovers over a clickable UI element /// public static readonly CVarDef UIHoverSound = - CVarDef.Create("interface.hover_sound", "/Audio/UserInterface/hover.ogg", CVar.REPLICATED); + CVarDef.Create("interface.hover_sound", "/Audio/_Sunrise/UserInterface/button_hover.ogg", CVar.REPLICATED); /// /// The layout style of the UI diff --git a/Resources/Audio/_Sunrise/UserInterface/buttonclick.ogg b/Resources/Audio/_Sunrise/UserInterface/button_click.ogg similarity index 100% rename from Resources/Audio/_Sunrise/UserInterface/buttonclick.ogg rename to Resources/Audio/_Sunrise/UserInterface/button_click.ogg diff --git a/Resources/Audio/_Sunrise/UserInterface/buttonrollover.ogg b/Resources/Audio/_Sunrise/UserInterface/button_hover.ogg similarity index 100% rename from Resources/Audio/_Sunrise/UserInterface/buttonrollover.ogg rename to Resources/Audio/_Sunrise/UserInterface/button_hover.ogg