mirror of
https://github.com/Raicuparta/nomai-vr.git
synced 2025-12-11 20:15:08 +01:00
Various fixes to xr branch after update
This commit is contained in:
parent
bca2a75fb3
commit
806ede4217
@ -76,6 +76,7 @@ namespace NomaiVR.EffectFixes
|
||||
{
|
||||
Transform parent;
|
||||
CameraHelper.SetFieldOfViewFactor(1, true);
|
||||
CameraHelper.ActivateCameraTracking(__instance._flashbackCamera.mainCamera, true);
|
||||
|
||||
if (____screenTransform.parent == __instance.transform)
|
||||
{
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
|
||||
using NomaiVR.Helpers;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NomaiVR.EffectFixes
|
||||
@ -53,6 +54,8 @@ namespace NomaiVR.EffectFixes
|
||||
newCamera.gameObject.SetActive(true);
|
||||
mapController._mapCamera = owCamera;
|
||||
|
||||
CameraHelper.ActivateCameraTracking(owCamera.mainCamera);
|
||||
|
||||
var markerManager = mapCameraTransform.Find("MarkerManager").GetComponent<Canvas>();
|
||||
var lockOnCanvas = mapCameraTransform.Find("MapLockOnCanvas").GetComponent<Canvas>();
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using UnityEngine;
|
||||
using NomaiVR.Helpers;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NomaiVR.EffectFixes
|
||||
{
|
||||
@ -26,6 +27,7 @@ namespace NomaiVR.EffectFixes
|
||||
parent.localPosition = __instance._peepholeCamera.transform.localPosition - Vector3.up*playerHeight.y + Vector3.forward*0.3f;
|
||||
parent.localRotation = Quaternion.identity;
|
||||
__instance._peepholeCamera.transform.parent = parent;
|
||||
CameraHelper.ActivateCameraTracking(__instance._peepholeCamera.mainCamera);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using UnityEngine;
|
||||
using NomaiVR.Helpers;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NomaiVR.EffectFixes
|
||||
{
|
||||
@ -25,6 +26,7 @@ namespace NomaiVR.EffectFixes
|
||||
parent.localRotation = Quaternion.identity;
|
||||
____slavePlatform.GetOwnedCamera().transform.parent = parent;
|
||||
____playerHologram.Find("Traveller_HEA_Player_v2").gameObject.SetActive(false);
|
||||
CameraHelper.ActivateCameraTracking(____slavePlatform.GetOwnedCamera()._camera.mainCamera);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -61,7 +61,7 @@ namespace NomaiVR.Hands
|
||||
camera.cullingMask = activeCamera.cullingMask;
|
||||
camera.depth = activeCamera.mainCamera.depth;
|
||||
camera.tag = activeCamera.tag;
|
||||
ActivateCameraTracking(camera);
|
||||
CameraHelper.ActivateCameraTracking(camera);
|
||||
|
||||
var owCamera = cameraObject.AddComponent<OWCamera>();
|
||||
owCamera.renderSkybox = true;
|
||||
@ -74,21 +74,13 @@ namespace NomaiVR.Hands
|
||||
|
||||
private void SetUpWrapperInGame()
|
||||
{
|
||||
ActivateCameraTracking(Camera.main);
|
||||
CameraHelper.ActivateCameraTracking(Camera.main);
|
||||
wrapper = new GameObject("VrGameStage").transform;
|
||||
wrapper.parent = Camera.main.transform.parent;
|
||||
wrapper.localRotation = Quaternion.identity;
|
||||
wrapper.localPosition = Camera.main.transform.localPosition;
|
||||
}
|
||||
|
||||
private void ActivateCameraTracking(Camera camera)
|
||||
{
|
||||
var hmdTracking = camera.gameObject.AddComponent<TrackedPoseDriver>();
|
||||
hmdTracking.SetPoseSource(TrackedPoseDriver.DeviceType.GenericXRDevice, TrackedPoseDriver.TrackedPose.Head);
|
||||
hmdTracking.updateType = TrackedPoseDriver.UpdateType.BeforeRender;
|
||||
hmdTracking.UseRelativeTransform = false;
|
||||
}
|
||||
|
||||
private void SetUpHands()
|
||||
{
|
||||
var right = new GameObject("VrRightHand").AddComponent<Hand>();
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.SpatialTracking;
|
||||
using UnityEngine.XR;
|
||||
|
||||
namespace NomaiVR.Helpers
|
||||
@ -30,5 +31,14 @@ namespace NomaiVR.Helpers
|
||||
{
|
||||
return camera.fieldOfView / fovFactor;
|
||||
}
|
||||
|
||||
|
||||
public static void ActivateCameraTracking(Camera camera, bool relativeTransform = false)
|
||||
{
|
||||
var hmdTracking = camera.gameObject.GetAddComponent<TrackedPoseDriver>();
|
||||
hmdTracking.SetPoseSource(TrackedPoseDriver.DeviceType.GenericXRDevice, TrackedPoseDriver.TrackedPose.Head);
|
||||
hmdTracking.updateType = TrackedPoseDriver.UpdateType.BeforeRender;
|
||||
hmdTracking.UseRelativeTransform = relativeTransform;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 856a644959c72ce4b903bac0ca7af702
|
||||
guid: 9c5893083d04a114f8f4700c954bee42
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ef055b6a6673ade498157dbd77c74d7f
|
||||
guid: b76f4d0efe922444e8d79781fe8e28bc
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "OpenVRAutoUpdater",
|
||||
"references": [],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [
|
||||
{
|
||||
"name": "com.unity.ugui",
|
||||
"expression": "",
|
||||
"define": "VALVE_UPDATE_FORCE"
|
||||
},
|
||||
{
|
||||
"name": "com.valvesoftware.openvr.installer.skipdelete",
|
||||
"expression": "",
|
||||
"define": "VALVE_SKIP_DELETE"
|
||||
}
|
||||
],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2bd3f51b26a95547ae8b62ce0573dda
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -1,7 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2fab3fcda6e74e74f9a2be92af13e3d3
|
||||
timeCreated: 1610087337
|
||||
licenseType: Store
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
|
||||
@ -2,7 +2,7 @@ fileFormatVersion: 2
|
||||
guid: dfc0179b6675d054d8460e515ec19c93
|
||||
folderAsset: yes
|
||||
timeCreated: 1462408473
|
||||
licenseType: Store
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
|
||||
@ -731,7 +731,7 @@ public struct IVRCompositor
|
||||
internal _GetCurrentFadeColor GetCurrentFadeColor;
|
||||
|
||||
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
|
||||
internal delegate void _FadeGrid(float fSeconds, bool bFadeGridIn);
|
||||
internal delegate void _FadeGrid(float fSeconds, bool bFadeIn);
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)]
|
||||
internal _FadeGrid FadeGrid;
|
||||
|
||||
@ -1120,11 +1120,6 @@ public struct IVROverlay
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)]
|
||||
internal _GetOverlayTransformCursor GetOverlayTransformCursor;
|
||||
|
||||
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
|
||||
internal delegate EVROverlayError _SetOverlayTransformProjection(ulong ulOverlayHandle, ETrackingUniverseOrigin eTrackingOrigin, ref HmdMatrix34_t pmatTrackingOriginToOverlayTransform, ref VROverlayProjection_t pProjection, EVREye eEye);
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)]
|
||||
internal _SetOverlayTransformProjection SetOverlayTransformProjection;
|
||||
|
||||
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
|
||||
internal delegate EVROverlayError _ShowOverlay(ulong ulOverlayHandle);
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)]
|
||||
@ -2904,9 +2899,9 @@ public class CVRCompositor
|
||||
HmdColor_t result = FnTable.GetCurrentFadeColor(bBackground);
|
||||
return result;
|
||||
}
|
||||
public void FadeGrid(float fSeconds,bool bFadeGridIn)
|
||||
public void FadeGrid(float fSeconds,bool bFadeIn)
|
||||
{
|
||||
FnTable.FadeGrid(fSeconds,bFadeGridIn);
|
||||
FnTable.FadeGrid(fSeconds,bFadeIn);
|
||||
}
|
||||
public float GetCurrentGridAlpha()
|
||||
{
|
||||
@ -3315,11 +3310,6 @@ public class CVROverlay
|
||||
EVROverlayError result = FnTable.GetOverlayTransformCursor(ulOverlayHandle,ref pvHotspot);
|
||||
return result;
|
||||
}
|
||||
public EVROverlayError SetOverlayTransformProjection(ulong ulOverlayHandle,ETrackingUniverseOrigin eTrackingOrigin,ref HmdMatrix34_t pmatTrackingOriginToOverlayTransform,ref VROverlayProjection_t pProjection,EVREye eEye)
|
||||
{
|
||||
EVROverlayError result = FnTable.SetOverlayTransformProjection(ulOverlayHandle,eTrackingOrigin,ref pmatTrackingOriginToOverlayTransform,ref pProjection,eEye);
|
||||
return result;
|
||||
}
|
||||
public EVROverlayError ShowOverlay(ulong ulOverlayHandle)
|
||||
{
|
||||
EVROverlayError result = FnTable.ShowOverlay(ulOverlayHandle);
|
||||
@ -4714,13 +4704,9 @@ public enum ETrackedDeviceProperty
|
||||
Prop_DisplaySupportsAnalogGain_Bool = 2085,
|
||||
Prop_DisplayMinAnalogGain_Float = 2086,
|
||||
Prop_DisplayMaxAnalogGain_Float = 2087,
|
||||
Prop_CameraExposureTime_Float = 2088,
|
||||
Prop_CameraGlobalGain_Float = 2089,
|
||||
Prop_DashboardScale_Float = 2091,
|
||||
Prop_IpdUIRangeMinMeters_Float = 2100,
|
||||
Prop_IpdUIRangeMaxMeters_Float = 2101,
|
||||
Prop_Hmd_SupportsHDCP14LegacyCompat_Bool = 2102,
|
||||
Prop_Hmd_SupportsMicMonitoring_Bool = 2103,
|
||||
Prop_DriverRequestedMuraCorrectionMode_Int32 = 2200,
|
||||
Prop_DriverRequestedMuraFeather_InnerLeft_Int32 = 2201,
|
||||
Prop_DriverRequestedMuraFeather_InnerRight_Int32 = 2202,
|
||||
@ -4815,8 +4801,6 @@ public enum EVRSubmitFlags
|
||||
Submit_TextureWithDepth = 16,
|
||||
Submit_FrameDiscontinuty = 32,
|
||||
Submit_VulkanTextureWithArrayData = 64,
|
||||
Submit_GlArrayTexture = 128,
|
||||
Submit_Reserved2 = 32768,
|
||||
}
|
||||
public enum EVRState
|
||||
{
|
||||
@ -5169,11 +5153,8 @@ public enum EVRApplicationType
|
||||
VRApplication_SteamWatchdog = 6,
|
||||
VRApplication_Bootstrapper = 7,
|
||||
VRApplication_WebHelper = 8,
|
||||
VRApplication_OpenXRInstance = 9,
|
||||
VRApplication_OpenXRScene = 10,
|
||||
VRApplication_OpenXROverlay = 11,
|
||||
VRApplication_Prism = 12,
|
||||
VRApplication_Max = 13,
|
||||
VRApplication_OpenXR = 9,
|
||||
VRApplication_Max = 10,
|
||||
}
|
||||
public enum EVRFirmwareError
|
||||
{
|
||||
@ -5253,15 +5234,6 @@ public enum EVRInitError
|
||||
Init_FailedForVrMonitor = 144,
|
||||
Init_PropertyManagerInitFailed = 145,
|
||||
Init_WebServerFailed = 146,
|
||||
Init_IllegalTypeTransition = 147,
|
||||
Init_MismatchedRuntimes = 148,
|
||||
Init_InvalidProcessId = 149,
|
||||
Init_VRServiceStartupFailed = 150,
|
||||
Init_PrismNeedsNewDrivers = 151,
|
||||
Init_PrismStartupTimedOut = 152,
|
||||
Init_CouldNotStartPrism = 153,
|
||||
Init_CreateDriverDirectDeviceFailed = 154,
|
||||
Init_PrismExitedUnexpectedly = 155,
|
||||
Driver_Failed = 200,
|
||||
Driver_Unknown = 201,
|
||||
Driver_HmdUnknown = 202,
|
||||
@ -5377,9 +5349,6 @@ public enum EVRInitError
|
||||
Compositor_CreateOverlayInvalidCall = 488,
|
||||
Compositor_CreateOverlayAlreadyInitialized = 489,
|
||||
Compositor_FailedToCreateMailbox = 490,
|
||||
Compositor_WindowInterfaceIsNull = 491,
|
||||
Compositor_SystemLayerCreateInstance = 492,
|
||||
Compositor_SystemLayerCreateSession = 493,
|
||||
VendorSpecific_UnableToConnectToOculusRuntime = 1000,
|
||||
VendorSpecific_WindowsNotInDevMode = 1001,
|
||||
VendorSpecific_HmdFound_CantOpenDevice = 1101,
|
||||
@ -5497,7 +5466,6 @@ public enum EVRApplicationError
|
||||
PropertyNotSet = 201,
|
||||
UnknownProperty = 202,
|
||||
InvalidParameter = 203,
|
||||
NotImplemented = 300,
|
||||
}
|
||||
public enum EVRApplicationProperty
|
||||
{
|
||||
@ -5588,7 +5556,6 @@ public enum VROverlayTransformType
|
||||
VROverlayTransform_DashboardTab = 5,
|
||||
VROverlayTransform_DashboardThumb = 6,
|
||||
VROverlayTransform_Mountable = 7,
|
||||
VROverlayTransform_Projection = 8,
|
||||
}
|
||||
public enum VROverlayFlags
|
||||
{
|
||||
@ -5982,11 +5949,6 @@ public enum EBlockQueueReadType
|
||||
public HmdVector2_t vTopLeft;
|
||||
public HmdVector2_t vBottomRight;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct VRBoneTransform_t
|
||||
{
|
||||
public HmdVector4_t position;
|
||||
public HmdQuaternionf_t orientation;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct DistortionCoordinates_t
|
||||
{
|
||||
public float rfRed0; //float[2]
|
||||
@ -6117,7 +6079,6 @@ public enum EBlockQueueReadType
|
||||
{
|
||||
public ulong overlayHandle;
|
||||
public ulong devicePath;
|
||||
public ulong memoryBlockId;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct VREvent_Status_t
|
||||
{
|
||||
@ -6340,6 +6301,11 @@ public enum EBlockQueueReadType
|
||||
unpacked.rAxis4 = this.rAxis4;
|
||||
}
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct VRBoneTransform_t
|
||||
{
|
||||
public HmdVector4_t position;
|
||||
public HmdQuaternionf_t orientation;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct CameraVideoStreamFrameHeader_t
|
||||
{
|
||||
public EVRTrackedCameraFrameType eFrameType;
|
||||
@ -6467,13 +6433,6 @@ public enum EBlockQueueReadType
|
||||
public EVROverlayIntersectionMaskPrimitiveType m_nPrimitiveType;
|
||||
public VROverlayIntersectionMaskPrimitive_Data_t m_Primitive;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct VROverlayProjection_t
|
||||
{
|
||||
public float fLeft;
|
||||
public float fRight;
|
||||
public float fTop;
|
||||
public float fBottom;
|
||||
}
|
||||
[StructLayout(LayoutKind.Sequential)] public struct VROverlayView_t
|
||||
{
|
||||
public ulong overlayHandle;
|
||||
@ -7565,7 +7524,7 @@ public class OpenVR
|
||||
public const uint k_unVROverlayMaxNameLength = 128;
|
||||
public const uint k_unMaxOverlayCount = 128;
|
||||
public const uint k_unMaxOverlayIntersectionMaskPrimitivesCount = 32;
|
||||
public const string IVROverlay_Version = "IVROverlay_025";
|
||||
public const string IVROverlay_Version = "IVROverlay_024";
|
||||
public const string IVROverlayView_Version = "IVROverlayView_003";
|
||||
public const uint k_unHeadsetViewMaxWidth = 3840;
|
||||
public const uint k_unHeadsetViewMaxHeight = 2160;
|
||||
@ -7600,7 +7559,6 @@ public class OpenVR
|
||||
public const string k_pch_SteamVR_PlayAreaColor_String = "playAreaColor";
|
||||
public const string k_pch_SteamVR_TrackingLossColor_String = "trackingLossColor";
|
||||
public const string k_pch_SteamVR_ShowStage_Bool = "showStage";
|
||||
public const string k_pch_SteamVR_DrawTrackingReferences_Bool = "drawTrackingReferences";
|
||||
public const string k_pch_SteamVR_ActivateMultipleDrivers_Bool = "activateMultipleDrivers";
|
||||
public const string k_pch_SteamVR_UsingSpeakers_Bool = "usingSpeakers";
|
||||
public const string k_pch_SteamVR_SpeakersForwardYawOffsetDegrees_Float = "speakersForwardYawOffsetDegrees";
|
||||
@ -7653,8 +7611,6 @@ public class OpenVR
|
||||
public const string k_pch_SteamVR_OverlayRenderQuality = "overlayRenderQuality_2";
|
||||
public const string k_pch_SteamVR_BlockOculusSDKOnOpenVRLaunchOption_Bool = "blockOculusSDKOnOpenVRLaunchOption";
|
||||
public const string k_pch_SteamVR_BlockOculusSDKOnAllLaunches_Bool = "blockOculusSDKOnAllLaunches";
|
||||
public const string k_pch_SteamVR_HDCPLegacyCompatibility_Bool = "hdcp14legacyCompatibility";
|
||||
public const string k_pch_SteamVR_UsePrism_Bool = "usePrism";
|
||||
public const string k_pch_DirectMode_Section = "direct_mode";
|
||||
public const string k_pch_DirectMode_Enable_Bool = "enable";
|
||||
public const string k_pch_DirectMode_Count_Int32 = "count";
|
||||
@ -7747,7 +7703,6 @@ public class OpenVR
|
||||
public const string k_pch_audio_LastHmdPlaybackDeviceId_String = "lastHmdPlaybackDeviceId";
|
||||
public const string k_pch_audio_VIVEHDMIGain = "viveHDMIGain";
|
||||
public const string k_pch_audio_DualSpeakerAndJackOutput_Bool = "dualSpeakerAndJackOutput";
|
||||
public const string k_pch_audio_MuteMicMonitor_Bool = "muteMicMonitor";
|
||||
public const string k_pch_Power_Section = "power";
|
||||
public const string k_pch_Power_PowerOffOnExit_Bool = "powerOffOnExit";
|
||||
public const string k_pch_Power_TurnOffScreensTimeout_Float = "turnOffScreensTimeout";
|
||||
@ -7761,7 +7716,6 @@ public class OpenVR
|
||||
public const string k_pch_Dashboard_Position = "position";
|
||||
public const string k_pch_Dashboard_DesktopScale = "desktopScale";
|
||||
public const string k_pch_Dashboard_DashboardScale = "dashboardScale";
|
||||
public const string k_pch_Dashboard_UseStandaloneSystemLayer = "standaloneSystemLayer";
|
||||
public const string k_pch_modelskin_Section = "modelskins";
|
||||
public const string k_pch_Driver_Enable_Bool = "enable";
|
||||
public const string k_pch_Driver_BlockedBySafemode_Bool = "blocked_by_safe_mode";
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8d26b9eddedb33d48be044bb268a57c7
|
||||
timeCreated: 1429123043
|
||||
licenseType: Store
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
|
||||
Binary file not shown.
@ -1,20 +1,23 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 2080010098
|
||||
CRC: 1935186381
|
||||
AssetBundleManifest:
|
||||
AssetBundleInfos:
|
||||
Info_0:
|
||||
Name: vrbindings-textures
|
||||
Dependencies: {}
|
||||
Info_1:
|
||||
Name: autopilot-button
|
||||
Name: steamvr-shaders
|
||||
Dependencies: {}
|
||||
Info_2:
|
||||
Name: handheld-buttons
|
||||
Dependencies:
|
||||
Dependency_0: cockpit-buttons
|
||||
Name: autopilot-button
|
||||
Dependencies: {}
|
||||
Info_3:
|
||||
Name: cockpit-buttons
|
||||
Dependencies: {}
|
||||
Info_4:
|
||||
Name: steamvr-shaders
|
||||
Name: handheld-buttons
|
||||
Dependencies:
|
||||
Dependency_0: cockpit-buttons
|
||||
Info_5:
|
||||
Name: xrmanager
|
||||
Dependencies: {}
|
||||
|
||||
Binary file not shown.
@ -1,9 +1,9 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 233977833
|
||||
CRC: 1090748957
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: d5bb13486501affe6540de0ebb239993
|
||||
Hash: 49b4d1a7d02bbe9c23986828c4018c42
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 4b38cb373e51156238a2bdcacc7583ba
|
||||
|
||||
Binary file not shown.
@ -1,9 +1,9 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 3083433590
|
||||
CRC: 3160167383
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: cbf3af2b6fe41877ccffd1e73c016a9b
|
||||
Hash: 8c1b86e0a5a8c85a5692d2bd9dcaac65
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: c7c5dc534e7357b33d15743fbed05b86
|
||||
|
||||
Binary file not shown.
@ -1,9 +1,9 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 486693342
|
||||
CRC: 2071149215
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 88e5d2adc94bd64e72dbef1bac41c0b8
|
||||
Hash: f99e471799ec6ae874fc706f2f112789
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: c7c5dc534e7357b33d15743fbed05b86
|
||||
|
||||
Binary file not shown.
@ -1,9 +1,9 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 1671130502
|
||||
CRC: 1704559845
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 081785b8d370b2609b9bfbf11c413c69
|
||||
Hash: e9c05874c5c8f8dcd7d2260909621bbe
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 55d48f4ad9c3b13330b9eb5ee5686477
|
||||
@ -19,7 +19,6 @@ Assets:
|
||||
- Assets/Shaders/SimulationCamera/StereoBlitSimulationMask.shader
|
||||
- Assets/Shaders/MindProjectionFix.shader
|
||||
- Assets/SteamVR/Resources/SteamVR_Fade_WorldSpace.shader
|
||||
- Assets/Shaders/SSSR/stochasticSSR.shader
|
||||
- Assets/SteamVR/Resources/SteamVR_SphericalProjection.shader
|
||||
- Assets/SteamVR/Resources/SteamVR_AlphaOut.shader
|
||||
- Assets/SteamVR/Resources/SteamVR_ColorOut.shader
|
||||
|
||||
@ -3,7 +3,7 @@ CRC: 1405974999
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 1c88a4bc7569dcc4716d2843d0f0b904
|
||||
Hash: 4505fa967587e0c3cf752223101289a6
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 7859cd501ea75098bcf7e53f1b477c26
|
||||
|
||||
Binary file not shown.
@ -1,9 +1,9 @@
|
||||
ManifestFileVersion: 0
|
||||
CRC: 2292769626
|
||||
CRC: 4265235849
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 137023b87e9090d4704063aaba55009f
|
||||
Hash: 26c652334b84945946f3677eae9954d9
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: d19d84d07ff9ccc7950e324a2b2e401a
|
||||
|
||||
@ -17,7 +17,7 @@ MonoBehaviour:
|
||||
SkipPromptForVersion:
|
||||
StereoRenderingMode: 0
|
||||
InitializationType: 1
|
||||
EditorAppKey: application.generated.unity.outerwildsvr.1173225600.exe
|
||||
EditorAppKey: steam.app.753640
|
||||
ActionManifestFileRelativeFilePath: StreamingAssets\SteamVR\actions.json
|
||||
MirrorView: 2
|
||||
HasCopiedDefaults: 0
|
||||
|
||||
@ -66,6 +66,12 @@ PlayerSettings:
|
||||
androidRenderOutsideSafeArea: 1
|
||||
androidUseSwappy: 0
|
||||
androidBlitType: 0
|
||||
androidResizableWindow: 0
|
||||
androidDefaultWindowWidth: 1920
|
||||
androidDefaultWindowHeight: 1080
|
||||
androidMinimumWindowWidth: 400
|
||||
androidMinimumWindowHeight: 300
|
||||
androidFullscreenMode: 1
|
||||
defaultIsNativeResolution: 1
|
||||
macRetinaSupport: 1
|
||||
runInBackground: 1
|
||||
@ -127,7 +133,6 @@ PlayerSettings:
|
||||
bundleVersion: 0.1
|
||||
preloadedAssets:
|
||||
- {fileID: 0}
|
||||
- {fileID: 3723299434278802999, guid: 13906739c9868ee489584241300fc5bc, type: 2}
|
||||
metroInputSource: 0
|
||||
wsaTransparentSwapchain: 0
|
||||
m_HolographicPauseOnTrackingLoss: 1
|
||||
@ -247,6 +252,7 @@ PlayerSettings:
|
||||
templatePackageId: com.unity.template.3d@4.2.8
|
||||
templateDefaultScene: Assets/Scenes/SampleScene.unity
|
||||
AndroidTargetArchitectures: 1
|
||||
AndroidTargetDevices: 0
|
||||
AndroidSplashScreenScale: 0
|
||||
androidSplashScreen: {fileID: 0}
|
||||
AndroidKeystoreName:
|
||||
@ -263,6 +269,7 @@ PlayerSettings:
|
||||
height: 180
|
||||
banner: {fileID: 0}
|
||||
androidGamepadSupportLevel: 0
|
||||
chromeosInputEmulation: 1
|
||||
AndroidValidateAppBundleSize: 1
|
||||
AndroidAppBundleSizeToValidate: 150
|
||||
m_BuildTargetIcons: []
|
||||
@ -486,7 +493,9 @@ PlayerSettings:
|
||||
switchNetworkInterfaceManagerInitializeEnabled: 1
|
||||
switchPlayerConnectionEnabled: 1
|
||||
switchUseMicroSleepForYield: 1
|
||||
switchEnableRamDiskSupport: 0
|
||||
switchMicroSleepForYieldTime: 25
|
||||
switchRamDiskSpaceSize: 12
|
||||
ps4NPAgeRating: 12
|
||||
ps4NPTitleSecret:
|
||||
ps4NPTrophyPackPath:
|
||||
@ -557,6 +566,7 @@ PlayerSettings:
|
||||
ps4videoRecordingFeaturesUsed: 0
|
||||
ps4contentSearchFeaturesUsed: 0
|
||||
ps4CompatibilityPS5: 0
|
||||
ps4AllowPS5Detection: 0
|
||||
ps4GPU800MHz: 1
|
||||
ps4attribEyeToEyeDistanceSettingVR: 0
|
||||
ps4IncludedModules: []
|
||||
@ -580,6 +590,7 @@ PlayerSettings:
|
||||
ps5UseAudio3dBackend: 0
|
||||
ps5ScriptOptimizationLevel: 2
|
||||
ps5Audio3dVirtualSpeakerCount: 14
|
||||
ps5VrrSupport: 0
|
||||
ps5UpdateReferencePackage:
|
||||
ps5disableAutoHideSplash: 0
|
||||
ps5OperatingSystemCanDisableSplashScreen: 0
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
m_EditorVersion: 2019.4.27f1
|
||||
m_EditorVersionWithRevision: 2019.4.27f1 (23dc10685eb4)
|
||||
m_EditorVersion: 2019.4.39f1
|
||||
m_EditorVersionWithRevision: 2019.4.39f1 (78d14dfa024b)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user