diff --git a/Content/Blueprints/UI/Widgets/Information/settings.uasset b/Content/Blueprints/UI/Widgets/Information/settings.uasset index b0299565..4ebbaeba 100644 Binary files a/Content/Blueprints/UI/Widgets/Information/settings.uasset and b/Content/Blueprints/UI/Widgets/Information/settings.uasset differ diff --git a/Platforms/HoloLens/Config/HoloLensEngine.ini b/Platforms/HoloLens/Config/HoloLensEngine.ini new file mode 100644 index 00000000..d5ebb91b --- /dev/null +++ b/Platforms/HoloLens/Config/HoloLensEngine.ini @@ -0,0 +1,32 @@ + + +[/Script/HoloLensPlatformEditor.HoloLensTargetSettings] +bBuildForEmulation=False +bBuildForDevice=True +bUseNameForLogo=True +bBuildForRetailWindowsStore=False +bAutoIncrementVersion=False +bShouldCreateAppInstaller=False +AppInstallerInstallationURL= +HoursBetweenUpdateChecks=0 +bEnablePIXProfiling=False +TileBackgroundColor=(B=64,G=0,R=0,A=255) +SplashScreenBackgroundColor=(B=64,G=0,R=0,A=255) ++PerCultureResources=(CultureId="",Strings=(PackageDisplayName="",PublisherDisplayName="",PackageDescription="",ApplicationDisplayName="",ApplicationDescription=""),Images=()) +TargetDeviceFamily=Windows.Holographic +MinimumPlatformVersion= +MaximumPlatformVersionTested=10.0.18362.0 +MaxTrianglesPerCubicMeter=500.000000 +SpatialMeshingVolumeSize=20.000000 +CompilerVersion=Default +Windows10SDKVersion=10.0.18362.0 ++CapabilityList=internetClientServer ++CapabilityList=privateNetworkClientServer ++Uap2CapabilityList=spatialPerception +bSetDefaultCapabilities=False +SpatializationPlugin= +SourceDataOverridePlugin= +ReverbPlugin= +OcclusionPlugin= +SoundCueCookQualityIndex=-1 + diff --git a/Samples/PixelStreaming/WebServers/get_ps_servers.bat b/Samples/PixelStreaming/WebServers/get_ps_servers.bat index d816f11f..d7b18f8a 100644 --- a/Samples/PixelStreaming/WebServers/get_ps_servers.bat +++ b/Samples/PixelStreaming/WebServers/get_ps_servers.bat @@ -51,7 +51,7 @@ if DEFINED UEVersion ( @Rem If no arguments select a specific version, fetch the appropriate default if NOT DEFINED PSInfraTagOrBranch ( - SET PSInfraTagOrBranch=master + SET PSInfraTagOrBranch=UE5.1 SET IsTag=0 ) diff --git a/Samples/PixelStreaming/WebServers/get_ps_servers.sh b/Samples/PixelStreaming/WebServers/get_ps_servers.sh index a402611c..15abcba9 100644 --- a/Samples/PixelStreaming/WebServers/get_ps_servers.sh +++ b/Samples/PixelStreaming/WebServers/get_ps_servers.sh @@ -59,7 +59,7 @@ fi # If no arguments select a specific version, fetch the appropriate default if [ -z "$PSInfraTagOrBranch" ] then - PSInfraTagOrBranch=master + PSInfraTagOrBranch=UE5.1 IsTag=0 fi @@ -80,12 +80,14 @@ else # Download ps-infra and follow redirects. curl -L https://github.com/$PSInfraOrg/$PSInfraRepo/archive/refs/$RefType/$PSInfraTagOrBranch.tar.gz > ps-infra.tar.gz - + # Unarchive the .tar tar -xmf ps-infra.tar.gz || $(echo "bad archive, contents:" && head --lines=20 ps-infra.tar.gz && exit 0) # Move the server folders into the current directory (WebServers) and delete the original directory mv PixelStreamingInfrastructure-*/* . + # Copy any files and folders beginning with dot (ignored by * glob) and discard errors regarding to not being able to move "." and ".." + mv PixelStreamingInfrastructure-*/.* . 2>/dev/null || : rm -rf PixelStreamingInfrastructure-* # Delete the downloaded tar