Add UI click sounds (#22410)
* Add UI click sounds * tweaks * Significant cleanup * Audio options and numerous fixes * Fix the remaining UI elements * new click sound --------- Co-authored-by: Kara <lunarautomaton6@gmail.com>
This commit is contained in:
@@ -127,14 +127,12 @@ public sealed class AdminUIController : UIController, IOnStateEntered<GameplaySt
|
||||
|
||||
private void OnWindowOpen()
|
||||
{
|
||||
if (AdminButton != null)
|
||||
AdminButton.Pressed = true;
|
||||
AdminButton?.SetClickPressed(true);
|
||||
}
|
||||
|
||||
private void OnWindowClosed()
|
||||
{
|
||||
if (AdminButton != null)
|
||||
AdminButton.Pressed = false;
|
||||
AdminButton?.SetClickPressed(false);
|
||||
}
|
||||
|
||||
private void OnWindowDisposed()
|
||||
|
||||
Reference in New Issue
Block a user