Ne audio setting menu

This commit is contained in:
2025-04-25 14:06:31 +03:00
parent 24ef152350
commit 9dc11a96fe
22 changed files with 23 additions and 0 deletions

View File

@ -21,6 +21,9 @@ void ULuckyRobotsGameInstance::Init()
{
Super::Init();
// Set fullscreen mode on startup
DoResolutionChange(true);
auto UISubsystem = GetSubsystem<UUISubsystem>();
if (UISubsystem)
{

View File

@ -695,4 +695,23 @@ struct FParsedData
UPROPERTY(BlueprintReadWrite, Category = "Parsed Data")
FString Quality;
};
USTRUCT(BlueprintType)
struct FSaveGameSettings
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float f_ambient;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float f_effect;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float f_ui;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float f_music;
};