Skip to content

Commit b2377b2

Browse files
committed
2 parents 30cdb07 + b9b368b commit b2377b2

11 files changed

+39
-9
lines changed

Config/DefaultEngine.ini

+26
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,33 @@ ManualIPAddress=
120120

121121
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
122122
DefaultGraphicsRHI=DefaultGraphicsRHI_DX11
123+
-D3D12TargetedShaderFormats=PCD3D_SM5
124+
+D3D12TargetedShaderFormats=PCD3D_SM5
125+
+D3D12TargetedShaderFormats=PCD3D_SM6
126+
-D3D11TargetedShaderFormats=PCD3D_SM5
127+
+D3D11TargetedShaderFormats=PCD3D_SM5
123128
Compiler=VisualStudio2022
129+
AudioSampleRate=48000
130+
AudioCallbackBufferFrameSize=1024
131+
AudioNumBuffersToEnqueue=1
132+
AudioMaxChannels=0
133+
AudioNumSourceWorkers=4
134+
SpatializationPlugin=
135+
SourceDataOverridePlugin=
136+
ReverbPlugin=
137+
OcclusionPlugin=
138+
CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0)
139+
CacheSizeKB=65536
140+
MaxChunkSizeOverrideKB=0
141+
bResampleForDevice=False
142+
MaxSampleRate=48000.000000
143+
HighSampleRate=32000.000000
144+
MedSampleRate=24000.000000
145+
LowSampleRate=12000.000000
146+
MinSampleRate=8000.000000
147+
CompressionQualityModifier=1.000000
148+
AutoStreamingThreshold=0.000000
149+
SoundCueCookQualityIndex=-1
124150

125151
[ConsoleVariables]
126152
fx.Niagara.ForceLastTickGroup=1
Binary file not shown.
40 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-40 Bytes
Binary file not shown.

Plugins/Stereolabs/Source/Stereolabs/Stereolabs.Build.cs

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ public Stereolabs(ReadOnlyTargetRules Target) : base(Target)
7171
AddEngineThirdPartyPrivateStaticDependencies(Target, "NVAPI");
7272
AddEngineThirdPartyPrivateStaticDependencies(Target, "AMD_AGS");
7373
AddEngineThirdPartyPrivateStaticDependencies(Target, "NVAftermath");
74-
AddEngineThirdPartyPrivateStaticDependencies(Target, "IntelMetricsDiscovery");
7574
AddEngineThirdPartyPrivateStaticDependencies(Target, "IntelExtensionsFramework");
7675

7776
PrivateDependencyModuleNames.AddRange(new string[] {

Plugins/Stereolabs/Source/ZED/Private/Engine/ZEDGameViewportClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ void UZEDGameViewportClient::Draw(FViewport* InViewport, FCanvas* SceneCanvas)
473473
{
474474
// Does not exist anymore
475475
// Make sure RHI resources get flushed if we're not using a renderer
476-
ENQUEUE_UNIQUE_RENDER_COMMAND(UGameViewportClient_FlushRHIResources,
476+
ENQUEUE_RENDER_COMMAND(UGameViewportClient_FlushRHIResources)([this](FRHICommandListImmediate& RHICmdList)
477477
{
478478
FRHICommandListExecutor::GetImmediateCommandList().ImmediateFlush(EImmediateFlushType::FlushRHIThreadFlushResources);
479479
});

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<h1 align="center">
2-
ZED UE5.3 Plugin
2+
ZED UE5.4 Plugin
33
<br>
44
</h1>
55

6-
This plugin requires using **UE5.3**.
6+
This plugin requires using **UE5.4**.
77

88
<p align="center">
99

@@ -30,7 +30,7 @@ This repository contains Unreal examples projects that demonstrate how to create
3030

3131
## Getting started
3232

33-
This version of the plugin is compatible with Unreal Engine **5.3**, and requires the [**ZED SDK 4.1**](https://www.stereolabs.com/docs/get-started-with-zed/#download-and-install-the-zed-sdk) and a **Windows setup**, because for now we are only compatible with the DirectX API.
33+
This version of the plugin is compatible with Unreal Engine **5.4**, and requires the [**ZED SDK 4.1**](https://www.stereolabs.com/docs/get-started-with-zed/#download-and-install-the-zed-sdk) and a **Windows setup**, because for now we are only compatible with the DirectX API.
3434

3535
- To see our implementation of Live Link with the ZED, go here : [ZED Live Link Plugin](https://github.com/stereolabs/zed-LiveLink-plugin)
3636

Source/ZEDSamples.Target.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ public class ZEDSamplesTarget : TargetRules
88
public ZEDSamplesTarget(TargetInfo Target) : base(Target)
99
{
1010
Type = TargetType.Game;
11+
bOverrideBuildEnvironment = true;
12+
ExtraModuleNames.AddRange( new string[] { "ZEDSamples" } );
13+
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
14+
DefaultBuildSettings = BuildSettingsVersion.Latest;
1115

12-
ExtraModuleNames.AddRange( new string[] { "ZEDSamples" } );
13-
14-
if (bBuildEditor)
16+
if (bBuildEditor)
1517
{
1618
ExtraModuleNames.AddRange(new string[] { "ZEDSamplesEditor" });
1719
}

Source/ZEDSamplesEditor.Target.cs

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ public ZEDSamplesEditorTarget(TargetInfo Target) : base(Target)
99
{
1010
bUseAdaptiveUnityBuild = false;
1111

12+
bOverrideBuildEnvironment = true;
13+
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
14+
DefaultBuildSettings = BuildSettingsVersion.Latest;
1215
Type = TargetType.Editor;
1316
ExtraModuleNames.AddRange( new string[] { "ZEDSamples" } );
1417
}

ZEDSamples.uproject

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"FileVersion": 3,
3-
"EngineAssociation": "5.3",
3+
"EngineAssociation": "5.4",
44
"Category": "",
55
"Description": "",
66
"Modules": [

0 commit comments

Comments
 (0)