generated from amasson/UnrealEngineProject
Compare commits
3 Commits
2bb7f2b6b1
...
829ec88126
| Author | SHA1 | Date | |
|---|---|---|---|
| 829ec88126 | |||
| dc32b6a1d0 | |||
| 67c6294ae3 |
@@ -33,6 +33,9 @@ CompressionQualityModifier=1.000000
|
|||||||
AutoStreamingThreshold=0.000000
|
AutoStreamingThreshold=0.000000
|
||||||
SoundCueCookQualityIndex=-1
|
SoundCueCookQualityIndex=-1
|
||||||
|
|
||||||
|
[/Script/LinuxTargetPlatform.LinuxTargetSettings]
|
||||||
|
-TargetedRHIs=SF_VULKAN_SM5
|
||||||
|
+TargetedRHIs=SF_VULKAN_SM6
|
||||||
|
|
||||||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||||
TargetedHardwareClass=Desktop
|
TargetedHardwareClass=Desktop
|
||||||
@@ -41,6 +44,7 @@ DefaultGraphicsPerformance=Maximum
|
|||||||
AppliedDefaultGraphicsPerformance=Maximum
|
AppliedDefaultGraphicsPerformance=Maximum
|
||||||
|
|
||||||
[/Script/Engine.RendererSettings]
|
[/Script/Engine.RendererSettings]
|
||||||
|
r.Mobile.EnableNoPrecomputedLightingCSMShader=True
|
||||||
r.GenerateMeshDistanceFields=True
|
r.GenerateMeshDistanceFields=True
|
||||||
r.DynamicGlobalIlluminationMethod=1
|
r.DynamicGlobalIlluminationMethod=1
|
||||||
r.ReflectionMethod=1
|
r.ReflectionMethod=1
|
||||||
@@ -48,6 +52,7 @@ r.Shadow.Virtual.Enable=1
|
|||||||
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
||||||
r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8
|
r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8
|
||||||
r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8
|
r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8
|
||||||
|
r.CustomDepth=3
|
||||||
|
|
||||||
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||||
@@ -58,8 +63,8 @@ FontDPIPreset=Standard
|
|||||||
FontDPI=72
|
FontDPI=72
|
||||||
|
|
||||||
[/Script/Engine.Engine]
|
[/Script/Engine.Engine]
|
||||||
+ActiveGameNameRedirects=(OldGameName="TP_BlankBP",NewGameName="/Script/Wailing")
|
+ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/Wailing")
|
||||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_BlankBP",NewGameName="/Script/Wailing")
|
+ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/Wailing")
|
||||||
|
|
||||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||||
bEnablePlugin=True
|
bEnablePlugin=True
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Submodule Plugins/FactionSystem updated: 91c4cae73f...691169eda5
Submodule Plugins/GasRpg updated: 97549c14bf...8347ac37b6
@@ -8,8 +8,8 @@ public class WailingTarget : TargetRules
|
|||||||
public WailingTarget(TargetInfo Target) : base(Target)
|
public WailingTarget(TargetInfo Target) : base(Target)
|
||||||
{
|
{
|
||||||
Type = TargetType.Game;
|
Type = TargetType.Game;
|
||||||
DefaultBuildSettings = BuildSettingsVersion.V4;
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
||||||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
|
||||||
ExtraModuleNames.AddRange( new string[] { "Wailing" } );
|
ExtraModuleNames.Add("Wailing");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
// Fill out your copyright notice in the Description page of Project Settings.
|
|
||||||
|
|
||||||
|
|
||||||
#include "MyClass.h"
|
|
||||||
|
|
||||||
MyClass::MyClass()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
MyClass::~MyClass()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
// Fill out your copyright notice in the Description page of Project Settings.
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
class WAILING_API MyClass
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
MyClass();
|
|
||||||
~MyClass();
|
|
||||||
};
|
|
||||||
@@ -8,8 +8,8 @@ public class WailingEditorTarget : TargetRules
|
|||||||
public WailingEditorTarget(TargetInfo Target) : base(Target)
|
public WailingEditorTarget(TargetInfo Target) : base(Target)
|
||||||
{
|
{
|
||||||
Type = TargetType.Editor;
|
Type = TargetType.Editor;
|
||||||
DefaultBuildSettings = BuildSettingsVersion.V4;
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
||||||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
|
||||||
ExtraModuleNames.AddRange( new string[] { "Wailing" } );
|
ExtraModuleNames.Add("Wailing");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"EngineAssociation": "5.3",
|
"EngineAssociation": "5.4",
|
||||||
"Category": "",
|
"Category": "",
|
||||||
"Description": "",
|
"Description": "",
|
||||||
"Modules": [
|
"Modules": [
|
||||||
@@ -19,4 +19,4 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user