added main and pause menus

This commit is contained in:
2026-06-05 20:00:33 +03:00
parent 0792f7cdfd
commit 61d5a57d8d
53 changed files with 1402 additions and 49 deletions
@@ -23,6 +23,18 @@ public:
UFUNCTION(BlueprintPure)
float GetGlobalVolume() const;
UFUNCTION(BlueprintCallable)
void SetMusicVolume(float Value);
UFUNCTION(BlueprintPure)
float GetMusicVolume() const;
UFUNCTION(BlueprintCallable)
void SetSfxVolume(float Value);
UFUNCTION(BlueprintPure)
float GetSfxVolume() const;
UFUNCTION(BlueprintCallable)
void SetIsCensorshipEnabled(bool Value);
@@ -46,6 +58,12 @@ protected:
UPROPERTY(Config)
float GlobalVolume = 0.5f;
UPROPERTY(Config)
float MusicVolume = 0.5f;
UPROPERTY(Config)
float SfxVolume = 0.5f;
UPROPERTY(Config)
bool IsCensorshipEnabled = false;