Merge pull request 'Ne audio setting menu' (#38) from gurkan.erdinc.temp2 into main
Reviewed-on: #38
This commit is contained in:
commit
7da5c810f4
@ -220,6 +220,7 @@ MinSampleRate=8000.000000
|
||||
CompressionQualityModifier=1.000000
|
||||
AutoStreamingThreshold=0.000000
|
||||
SoundCueCookQualityIndex=-1
|
||||
DefaultWindowMode=Fullscreen
|
||||
|
||||
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||
|
BIN
Content/Audio/Aud_Source/SWAVE_BtnClick.uasset
Normal file
BIN
Content/Audio/Aud_Source/SWAVE_BtnClick.uasset
Normal file
Binary file not shown.
BIN
Content/Audio/Sound_Classes/SCLASSMIX_Lucky.uasset
Normal file
BIN
Content/Audio/Sound_Classes/SCLASSMIX_Lucky.uasset
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/Audio/Sound_Classes/SCLASS_Ambiance.uasset
Normal file
BIN
Content/Audio/Sound_Classes/SCLASS_Ambiance.uasset
Normal file
Binary file not shown.
BIN
Content/Audio/Sound_Classes/SCLASS_Effect.uasset
Normal file
BIN
Content/Audio/Sound_Classes/SCLASS_Effect.uasset
Normal file
Binary file not shown.
BIN
Content/Audio/Sound_Classes/SCLASS_Music.uasset
Normal file
BIN
Content/Audio/Sound_Classes/SCLASS_Music.uasset
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/Audio/Sound_Classes/SCLASS_Widget.uasset
Normal file
BIN
Content/Audio/Sound_Classes/SCLASS_Widget.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/SaveGame/BP_VolumeSaveGame.uasset
Normal file
BIN
Content/SaveGame/BP_VolumeSaveGame.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/luckyBot/Luckywidget/Style/WB_LuckySlider.uasset
Normal file
BIN
Content/luckyBot/Luckywidget/Style/WB_LuckySlider.uasset
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/luckyBot/Luckywidget/menu/WB_volumeMenu.uasset
Normal file
BIN
Content/luckyBot/Luckywidget/menu/WB_volumeMenu.uasset
Normal file
Binary file not shown.
BIN
Content/luckyBot/icons/volume.uasset
Normal file
BIN
Content/luckyBot/icons/volume.uasset
Normal file
Binary file not shown.
@ -21,6 +21,9 @@ void ULuckyRobotsGameInstance::Init()
|
||||
{
|
||||
Super::Init();
|
||||
|
||||
// Set fullscreen mode on startup
|
||||
DoResolutionChange(true);
|
||||
|
||||
auto UISubsystem = GetSubsystem<UUISubsystem>();
|
||||
if (UISubsystem)
|
||||
{
|
||||
|
@ -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;
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user