/************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use the Utilities SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at https://developer.oculus.com/licenses/utilities-1.31 Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ************************************************************************************/ #if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS #define USING_XR_SDK #endif #if UNITY_ANDROID && !UNITY_EDITOR #define OVR_ANDROID_MRC #endif #if !UNITY_5_6_OR_NEWER #error Oculus Utilities require Unity 5.6 or higher. #endif using System; using System.Collections.Generic; using UnityEngine; #if UNITY_EDITOR using UnityEditor; #endif #if USING_XR_SDK using UnityEngine.XR; using UnityEngine.Experimental.XR; #endif #if UNITY_2017_2_OR_NEWER using Settings = UnityEngine.XR.XRSettings; using Node = UnityEngine.XR.XRNode; #else using Settings = UnityEngine.VR.VRSettings; using Node = UnityEngine.VR.VRNode; #endif /// /// Configuration data for Oculus virtual reality. /// public class OVRManager : MonoBehaviour { public enum TrackingOrigin { EyeLevel = OVRPlugin.TrackingOrigin.EyeLevel, FloorLevel = OVRPlugin.TrackingOrigin.FloorLevel, Stage = OVRPlugin.TrackingOrigin.Stage, } public enum EyeTextureFormat { Default = OVRPlugin.EyeTextureFormat.Default, R16G16B16A16_FP = OVRPlugin.EyeTextureFormat.R16G16B16A16_FP, R11G11B10_FP = OVRPlugin.EyeTextureFormat.R11G11B10_FP, } public enum FixedFoveatedRenderingLevel { Off = OVRPlugin.FixedFoveatedRenderingLevel.Off, Low = OVRPlugin.FixedFoveatedRenderingLevel.Low, Medium = OVRPlugin.FixedFoveatedRenderingLevel.Medium, High = OVRPlugin.FixedFoveatedRenderingLevel.High, HighTop = OVRPlugin.FixedFoveatedRenderingLevel.HighTop, } [Obsolete("Please use FixedFoveatedRenderingLevel instead")] public enum TiledMultiResLevel { Off = OVRPlugin.TiledMultiResLevel.Off, LMSLow = OVRPlugin.TiledMultiResLevel.LMSLow, LMSMedium = OVRPlugin.TiledMultiResLevel.LMSMedium, LMSHigh = OVRPlugin.TiledMultiResLevel.LMSHigh, LMSHighTop = OVRPlugin.TiledMultiResLevel.LMSHighTop, } public enum XRDevice { Unknown = 0, Oculus = 1, OpenVR = 2, } /// /// Gets the singleton instance. /// public static OVRManager instance { get; private set; } /// /// Gets a reference to the active display. /// public static OVRDisplay display { get; private set; } /// /// Gets a reference to the active sensor. /// public static OVRTracker tracker { get; private set; } /// /// Gets a reference to the active boundary system. /// public static OVRBoundary boundary { get; private set; } private static OVRProfile _profile; /// /// Gets the current profile, which contains information about the user's settings and body dimensions. /// public static OVRProfile profile { get { if (_profile == null) _profile = new OVRProfile(); return _profile; } } private IEnumerable disabledCameras; float prevTimeScale; /// /// Occurs when an HMD attached. /// public static event Action HMDAcquired; /// /// Occurs when an HMD detached. /// public static event Action HMDLost; /// /// Occurs when an HMD is put on the user's head. /// public static event Action HMDMounted; /// /// Occurs when an HMD is taken off the user's head. /// public static event Action HMDUnmounted; /// /// Occurs when VR Focus is acquired. /// public static event Action VrFocusAcquired; /// /// Occurs when VR Focus is lost. /// public static event Action VrFocusLost; /// /// Occurs when Input Focus is acquired. /// public static event Action InputFocusAcquired; /// /// Occurs when Input Focus is lost. /// public static event Action InputFocusLost; /// /// Occurs when the active Audio Out device has changed and a restart is needed. /// public static event Action AudioOutChanged; /// /// Occurs when the active Audio In device has changed and a restart is needed. /// public static event Action AudioInChanged; /// /// Occurs when the sensor gained tracking. /// public static event Action TrackingAcquired; /// /// Occurs when the sensor lost tracking. /// public static event Action TrackingLost; /// /// Occurs when Health & Safety Warning is dismissed. /// //Disable the warning about it being unused. It's deprecated. #pragma warning disable 0067 [Obsolete] public static event Action HSWDismissed; #pragma warning restore private static bool _isHmdPresentCached = false; private static bool _isHmdPresent = false; private static bool _wasHmdPresent = false; /// /// If true, a head-mounted display is connected and present. /// public static bool isHmdPresent { get { if (!_isHmdPresentCached) { _isHmdPresentCached = true; _isHmdPresent = OVRNodeStateProperties.IsHmdPresent(); } return _isHmdPresent; } private set { _isHmdPresentCached = true; _isHmdPresent = value; } } /// /// Gets the audio output device identifier. /// /// /// On Windows, this is a string containing the GUID of the IMMDevice for the Windows audio endpoint to use. /// public static string audioOutId { get { return OVRPlugin.audioOutId; } } /// /// Gets the audio input device identifier. /// /// /// On Windows, this is a string containing the GUID of the IMMDevice for the Windows audio endpoint to use. /// public static string audioInId { get { return OVRPlugin.audioInId; } } private static bool _hasVrFocusCached = false; private static bool _hasVrFocus = false; private static bool _hadVrFocus = false; /// /// If true, the app has VR Focus. /// public static bool hasVrFocus { get { if (!_hasVrFocusCached) { _hasVrFocusCached = true; _hasVrFocus = OVRPlugin.hasVrFocus; } return _hasVrFocus; } private set { _hasVrFocusCached = true; _hasVrFocus = value; } } private static bool _hadInputFocus = true; /// /// If true, the app has Input Focus. /// public static bool hasInputFocus { get { return OVRPlugin.hasInputFocus; } } /// /// If true, chromatic de-aberration will be applied, improving the image at the cost of texture bandwidth. /// public bool chromatic { get { if (!isHmdPresent) return false; return OVRPlugin.chromatic; } set { if (!isHmdPresent) return; OVRPlugin.chromatic = value; } } [Header("Performance/Quality")] /// /// If true, distortion rendering work is submitted a quarter-frame early to avoid pipeline stalls and increase CPU-GPU parallelism. /// [Tooltip("If true, distortion rendering work is submitted a quarter-frame early to avoid pipeline stalls and increase CPU-GPU parallelism.")] public bool queueAhead = true; /// /// If true, Unity will use the optimal antialiasing level for quality/performance on the current hardware. /// [Tooltip("If true, Unity will use the optimal antialiasing level for quality/performance on the current hardware.")] public bool useRecommendedMSAALevel = true; /// /// If true, both eyes will see the same image, rendered from the center eye pose, saving performance. /// [SerializeField] [Tooltip("If true, both eyes will see the same image, rendered from the center eye pose, saving performance.")] private bool _monoscopic = false; public bool monoscopic { get { if (!isHmdPresent) return _monoscopic; return OVRPlugin.monoscopic; } set { if (!isHmdPresent) return; OVRPlugin.monoscopic = value; _monoscopic = value; } } /// /// If true, dynamic resolution will be enabled /// [Tooltip("If true, dynamic resolution will be enabled On PC")] public bool enableAdaptiveResolution = false; /// /// Adaptive Resolution is based on Unity engine's renderViewportScale/eyeTextureResolutionScale feature /// But renderViewportScale was broken in an array of Unity engines, this function help to filter out those broken engines /// public static bool IsAdaptiveResSupportedByEngine() { #if UNITY_2017_1_OR_NEWER return Application.unityVersion != "2017.1.0f1"; #else return false; #endif } /// /// Min RenderScale the app can reach under adaptive resolution mode ( enableAdaptiveResolution = true ); /// [RangeAttribute(0.5f, 2.0f)] [Tooltip("Min RenderScale the app can reach under adaptive resolution mode")] public float minRenderScale = 0.7f; /// /// Max RenderScale the app can reach under adaptive resolution mode ( enableAdaptiveResolution = true ); /// [RangeAttribute(0.5f, 2.0f)] [Tooltip("Max RenderScale the app can reach under adaptive resolution mode")] public float maxRenderScale = 1.0f; /// /// Set the relative offset rotation of head poses /// [SerializeField] [Tooltip("Set the relative offset rotation of head poses")] private Vector3 _headPoseRelativeOffsetRotation; public Vector3 headPoseRelativeOffsetRotation { get { return _headPoseRelativeOffsetRotation; } set { OVRPlugin.Quatf rotation; OVRPlugin.Vector3f translation; if (OVRPlugin.GetHeadPoseModifier(out rotation, out translation)) { Quaternion finalRotation = Quaternion.Euler(value); rotation = finalRotation.ToQuatf(); OVRPlugin.SetHeadPoseModifier(ref rotation, ref translation); } _headPoseRelativeOffsetRotation = value; } } /// /// Set the relative offset translation of head poses /// [SerializeField] [Tooltip("Set the relative offset translation of head poses")] private Vector3 _headPoseRelativeOffsetTranslation; public Vector3 headPoseRelativeOffsetTranslation { get { return _headPoseRelativeOffsetTranslation; } set { OVRPlugin.Quatf rotation; OVRPlugin.Vector3f translation; if (OVRPlugin.GetHeadPoseModifier(out rotation, out translation)) { if (translation.FromFlippedZVector3f() != value) { translation = value.ToFlippedZVector3f(); OVRPlugin.SetHeadPoseModifier(ref rotation, ref translation); } } _headPoseRelativeOffsetTranslation = value; } } /// /// The TCP listening port of Oculus Profiler Service, which will be activated in Debug/Developerment builds /// When the app is running on editor or device, open "Tools/Oculus/Oculus Profiler Panel" to view the realtime system metrics /// public int profilerTcpPort = OVRSystemPerfMetrics.TcpListeningPort; #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID /// /// If true, the MixedRealityCapture properties will be displayed /// [HideInInspector] public bool expandMixedRealityCapturePropertySheet = false; /// /// If true, Mixed Reality mode will be enabled /// [HideInInspector, Tooltip("If true, Mixed Reality mode will be enabled. It would be always set to false when the game is launching without editor")] public bool enableMixedReality = false; public enum CompositionMethod { External, Direct } /// /// Composition method /// [HideInInspector] public CompositionMethod compositionMethod = CompositionMethod.External; /// /// Extra hidden layers /// [HideInInspector, Tooltip("Extra hidden layers")] public LayerMask extraHiddenLayers; /// /// The backdrop color will be used when rendering the foreground frames (on Rift). It only applies to External Composition. /// [HideInInspector, Tooltip("Backdrop color for Rift (External Compositon)")] public Color externalCompositionBackdropColorRift = Color.green; /// /// The backdrop color will be used when rendering the foreground frames (on Quest). It only applies to External Composition. /// [HideInInspector, Tooltip("Backdrop color for Quest (External Compositon)")] public Color externalCompositionBackdropColorQuest = Color.clear; /// /// If true, Mixed Reality mode will use direct composition from the first web camera /// public enum CameraDevice { WebCamera0, WebCamera1, ZEDCamera } /// /// The camera device for direct composition /// [HideInInspector, Tooltip("The camera device for direct composition")] public CameraDevice capturingCameraDevice = CameraDevice.WebCamera0; /// /// Flip the camera frame horizontally /// [HideInInspector, Tooltip("Flip the camera frame horizontally")] public bool flipCameraFrameHorizontally = false; /// /// Flip the camera frame vertically /// [HideInInspector, Tooltip("Flip the camera frame vertically")] public bool flipCameraFrameVertically = false; /// /// Delay the touch controller pose by a short duration (0 to 0.5 second) to match the physical camera latency /// [HideInInspector, Tooltip("Delay the touch controller pose by a short duration (0 to 0.5 second) to match the physical camera latency")] public float handPoseStateLatency = 0.0f; /// /// Delay the foreground / background image in the sandwich composition to match the physical camera latency. The maximum duration is sandwichCompositionBufferedFrames / {Game FPS} /// [HideInInspector, Tooltip("Delay the foreground / background image in the sandwich composition to match the physical camera latency. The maximum duration is sandwichCompositionBufferedFrames / {Game FPS}")] public float sandwichCompositionRenderLatency = 0.0f; /// /// The number of frames are buffered in the SandWich composition. The more buffered frames, the more memory it would consume. /// [HideInInspector, Tooltip("The number of frames are buffered in the SandWich composition. The more buffered frames, the more memory it would consume.")] public int sandwichCompositionBufferedFrames = 8; /// /// Chroma Key Color /// [HideInInspector, Tooltip("Chroma Key Color")] public Color chromaKeyColor = Color.green; /// /// Chroma Key Similarity /// [HideInInspector, Tooltip("Chroma Key Similarity")] public float chromaKeySimilarity = 0.60f; /// /// Chroma Key Smooth Range /// [HideInInspector, Tooltip("Chroma Key Smooth Range")] public float chromaKeySmoothRange = 0.03f; /// /// Chroma Key Spill Range /// [HideInInspector, Tooltip("Chroma Key Spill Range")] public float chromaKeySpillRange = 0.06f; /// /// Use dynamic lighting (Depth sensor required) /// [HideInInspector, Tooltip("Use dynamic lighting (Depth sensor required)")] public bool useDynamicLighting = false; public enum DepthQuality { Low, Medium, High } /// /// The quality level of depth image. The lighting could be more smooth and accurate with high quality depth, but it would also be more costly in performance. /// [HideInInspector, Tooltip("The quality level of depth image. The lighting could be more smooth and accurate with high quality depth, but it would also be more costly in performance.")] public DepthQuality depthQuality = DepthQuality.Medium; /// /// Smooth factor in dynamic lighting. Larger is smoother /// [HideInInspector, Tooltip("Smooth factor in dynamic lighting. Larger is smoother")] public float dynamicLightingSmoothFactor = 8.0f; /// /// The maximum depth variation across the edges. Make it smaller to smooth the lighting on the edges. /// [HideInInspector, Tooltip("The maximum depth variation across the edges. Make it smaller to smooth the lighting on the edges.")] public float dynamicLightingDepthVariationClampingValue = 0.001f; public enum VirtualGreenScreenType { Off, OuterBoundary, PlayArea } /// /// Set the current type of the virtual green screen /// [HideInInspector, Tooltip("Type of virutal green screen ")] public VirtualGreenScreenType virtualGreenScreenType = VirtualGreenScreenType.Off; /// /// Top Y of virtual screen /// [HideInInspector, Tooltip("Top Y of virtual green screen")] public float virtualGreenScreenTopY = 10.0f; /// /// Bottom Y of virtual screen /// [HideInInspector, Tooltip("Bottom Y of virtual green screen")] public float virtualGreenScreenBottomY = -10.0f; /// /// When using a depth camera (e.g. ZED), whether to use the depth in virtual green screen culling. /// [HideInInspector, Tooltip("When using a depth camera (e.g. ZED), whether to use the depth in virtual green screen culling.")] public bool virtualGreenScreenApplyDepthCulling = false; /// /// The tolerance value (in meter) when using the virtual green screen with a depth camera. Make it bigger if the foreground objects got culled incorrectly. /// [HideInInspector, Tooltip("The tolerance value (in meter) when using the virtual green screen with a depth camera. Make it bigger if the foreground objects got culled incorrectly.")] public float virtualGreenScreenDepthTolerance = 0.2f; public enum MrcActivationMode { Automatic, Disabled } /// /// (Quest-only) control if the mixed reality capture mode can be activated automatically through remote network connection. /// [HideInInspector, Tooltip("(Quest-only) control if the mixed reality capture mode can be activated automatically through remote network connection.")] public MrcActivationMode mrcActivationMode; #endif /// /// The number of expected display frames per rendered frame. /// public int vsyncCount { get { if (!isHmdPresent) return 1; return OVRPlugin.vsyncCount; } set { if (!isHmdPresent) return; OVRPlugin.vsyncCount = value; } } public static string OCULUS_UNITY_NAME_STR = "Oculus"; public static string OPENVR_UNITY_NAME_STR = "OpenVR"; public static XRDevice loadedXRDevice; /// /// Gets the current battery level. /// /// battery level in the range [0.0,1.0] /// Battery level. public static float batteryLevel { get { if (!isHmdPresent) return 1f; return OVRPlugin.batteryLevel; } } /// /// Gets the current battery temperature. /// /// battery temperature in Celsius /// Battery temperature. public static float batteryTemperature { get { if (!isHmdPresent) return 0f; return OVRPlugin.batteryTemperature; } } /// /// Gets the current battery status. /// /// battery status /// Battery status. public static int batteryStatus { get { if (!isHmdPresent) return -1; return (int)OVRPlugin.batteryStatus; } } /// /// Gets the current volume level. /// /// volume level in the range [0,1]. public static float volumeLevel { get { if (!isHmdPresent) return 0f; return OVRPlugin.systemVolume; } } /// /// Gets or sets the current CPU performance level (0-2). Lower performance levels save more power. /// public static int cpuLevel { get { if (!isHmdPresent) return 2; return OVRPlugin.cpuLevel; } set { if (!isHmdPresent) return; OVRPlugin.cpuLevel = value; } } /// /// Gets or sets the current GPU performance level (0-2). Lower performance levels save more power. /// public static int gpuLevel { get { if (!isHmdPresent) return 2; return OVRPlugin.gpuLevel; } set { if (!isHmdPresent) return; OVRPlugin.gpuLevel = value; } } /// /// If true, the CPU and GPU are currently throttled to save power and/or reduce the temperature. /// public static bool isPowerSavingActive { get { if (!isHmdPresent) return false; return OVRPlugin.powerSaving; } } /// /// Gets or sets the eye texture format. /// public static EyeTextureFormat eyeTextureFormat { get { return (OVRManager.EyeTextureFormat)OVRPlugin.GetDesiredEyeTextureFormat(); } set { OVRPlugin.SetDesiredEyeTextureFormat((OVRPlugin.EyeTextureFormat)value); } } /// /// Gets if tiled-based multi-resolution technique is supported /// This feature is only supported on QCOMM-based Android devices /// public static bool fixedFoveatedRenderingSupported { get { return OVRPlugin.fixedFoveatedRenderingSupported; } } /// /// Gets or sets the tiled-based multi-resolution level /// This feature is only supported on QCOMM-based Android devices /// public static FixedFoveatedRenderingLevel fixedFoveatedRenderingLevel { get { if (!OVRPlugin.fixedFoveatedRenderingSupported) { Debug.LogWarning("Fixed Foveated Rendering feature is not supported"); } return (FixedFoveatedRenderingLevel)OVRPlugin.fixedFoveatedRenderingLevel; } set { if (!OVRPlugin.fixedFoveatedRenderingSupported) { Debug.LogWarning("Fixed Foveated Rendering feature is not supported"); } OVRPlugin.fixedFoveatedRenderingLevel = (OVRPlugin.FixedFoveatedRenderingLevel)value; } } [Obsolete("Please use fixedFoveatedRenderingSupported instead", false)] public static bool tiledMultiResSupported { get { return OVRPlugin.tiledMultiResSupported; } } [Obsolete("Please use fixedFoveatedRenderingLevel instead", false)] public static TiledMultiResLevel tiledMultiResLevel { get { if (!OVRPlugin.tiledMultiResSupported) { Debug.LogWarning("Tiled-based Multi-resolution feature is not supported"); } return (TiledMultiResLevel)OVRPlugin.tiledMultiResLevel; } set { if (!OVRPlugin.tiledMultiResSupported) { Debug.LogWarning("Tiled-based Multi-resolution feature is not supported"); } OVRPlugin.tiledMultiResLevel = (OVRPlugin.TiledMultiResLevel)value; } } /// /// Gets if the GPU Utility is supported /// This feature is only supported on QCOMM-based Android devices /// public static bool gpuUtilSupported { get { return OVRPlugin.gpuUtilSupported; } } /// /// Gets the GPU Utilised Level (0.0 - 1.0) /// This feature is only supported on QCOMM-based Android devices /// public static float gpuUtilLevel { get { if (!OVRPlugin.gpuUtilSupported) { Debug.LogWarning("GPU Util is not supported"); } return OVRPlugin.gpuUtilLevel; } } /// /// Sets the Color Scale and Offset which is commonly used for effects like fade-to-black. /// In our compositor, once a given frame is rendered, warped, and ready to be displayed, we then multiply /// each pixel by colorScale and add it to colorOffset, whereby newPixel = oldPixel * colorScale + colorOffset. /// Note that for mobile devices (Quest, Go, etc.), colorOffset is not supported, so colorScale is all that can /// be used. A colorScale of (1, 1, 1, 1) and colorOffset of (0, 0, 0, 0) will lead to an identity multiplication /// and have no effect. /// public static void SetColorScaleAndOffset(Vector4 colorScale, Vector4 colorOffset, bool applyToAllLayers) { OVRPlugin.SetColorScaleAndOffset(colorScale, colorOffset, applyToAllLayers); } /// /// Specifies OpenVR pose local to tracking space /// public static void SetOpenVRLocalPose(Vector3 leftPos, Vector3 rightPos, Quaternion leftRot, Quaternion rightRot) { if (loadedXRDevice == XRDevice.OpenVR) OVRInput.SetOpenVRLocalPose(leftPos, rightPos, leftRot, rightRot); } //Series of offsets that line up the virtual controllers to the phsyical world. private static Vector3 OpenVRTouchRotationOffsetEulerLeft = new Vector3(40.0f, 0.0f, 0.0f); private static Vector3 OpenVRTouchRotationOffsetEulerRight = new Vector3(40.0f, 0.0f, 0.0f); private static Vector3 OpenVRTouchPositionOffsetLeft = new Vector3(0.0075f, -0.005f, -0.0525f); private static Vector3 OpenVRTouchPositionOffsetRight = new Vector3(-0.0075f, -0.005f, -0.0525f); /// /// Specifies the pose offset required to make an OpenVR controller's reported pose match the virtual pose. /// Currently we only specify this offset for Oculus Touch on OpenVR. /// public static OVRPose GetOpenVRControllerOffset(Node hand) { OVRPose poseOffset = OVRPose.identity; if ((hand == Node.LeftHand || hand == Node.RightHand) && loadedXRDevice == XRDevice.OpenVR) { int index = (hand == Node.LeftHand) ? 0 : 1; if (OVRInput.openVRControllerDetails[index].controllerType == OVRInput.OpenVRController.OculusTouch) { Vector3 offsetOrientation = (hand == Node.LeftHand) ? OpenVRTouchRotationOffsetEulerLeft : OpenVRTouchRotationOffsetEulerRight; poseOffset.orientation = Quaternion.Euler(offsetOrientation.x, offsetOrientation.y, offsetOrientation.z); poseOffset.position = (hand == Node.LeftHand) ? OpenVRTouchPositionOffsetLeft : OpenVRTouchPositionOffsetRight; } } return poseOffset; } [Header("Tracking")] [SerializeField] [Tooltip("Defines the current tracking origin type.")] private OVRManager.TrackingOrigin _trackingOriginType = OVRManager.TrackingOrigin.EyeLevel; /// /// Defines the current tracking origin type. /// public OVRManager.TrackingOrigin trackingOriginType { get { if (!isHmdPresent) return _trackingOriginType; return (OVRManager.TrackingOrigin)OVRPlugin.GetTrackingOriginType(); } set { if (!isHmdPresent) return; if (OVRPlugin.SetTrackingOriginType((OVRPlugin.TrackingOrigin)value)) { // Keep the field exposed in the Unity Editor synchronized with any changes. _trackingOriginType = value; } } } /// /// If true, head tracking will affect the position of each OVRCameraRig's cameras. /// [Tooltip("If true, head tracking will affect the position of each OVRCameraRig's cameras.")] public bool usePositionTracking = true; /// /// If true, head tracking will affect the rotation of each OVRCameraRig's cameras. /// [HideInInspector] public bool useRotationTracking = true; /// /// If true, the distance between the user's eyes will affect the position of each OVRCameraRig's cameras. /// [Tooltip("If true, the distance between the user's eyes will affect the position of each OVRCameraRig's cameras.")] public bool useIPDInPositionTracking = true; /// /// If true, each scene load will cause the head pose to reset. /// [Tooltip("If true, each scene load will cause the head pose to reset.")] public bool resetTrackerOnLoad = false; /// /// If true, the Reset View in the universal menu will cause the pose to be reset. This should generally be /// enabled for applications with a stationary position in the virtual world and will allow the View Reset /// command to place the person back to a predefined location (such as a cockpit seat). /// Set this to false if you have a locomotion system because resetting the view would effectively teleport /// the player to potentially invalid locations. /// [Tooltip("If true, the Reset View in the universal menu will cause the pose to be reset. This should generally be enabled for applications with a stationary position in the virtual world and will allow the View Reset command to place the person back to a predefined location (such as a cockpit seat). Set this to false if you have a locomotion system because resetting the view would effectively teleport the player to potentially invalid locations.")] public bool AllowRecenter = true; [SerializeField] [Tooltip("Specifies HMD recentering behavior when controller recenter is performed. True recenters the HMD as well, false does not.")] private bool _reorientHMDOnControllerRecenter = true; /// /// Defines the recentering mode specified in the tooltip above. /// public bool reorientHMDOnControllerRecenter { get { if (!isHmdPresent) return false; return OVRPlugin.GetReorientHMDOnControllerRecenter(); } set { if (!isHmdPresent) return; OVRPlugin.SetReorientHMDOnControllerRecenter(value); } } /// /// If true, a lower-latency update will occur right before rendering. If false, the only controller pose update will occur at the start of simulation for a given frame. /// Selecting this option lowers rendered latency for controllers and is often a net positive; however, it also creates a slight disconnect between rendered and simulated controller poses. /// Visit online Oculus documentation to learn more. /// [Tooltip("If true, rendered controller latency is reduced by several ms, as the left/right controllers will have their positions updated right before rendering.")] public bool LateControllerUpdate = true; /// /// True if the current platform supports virtual reality. /// public bool isSupportedPlatform { get; private set; } private static bool _isUserPresentCached = false; private static bool _isUserPresent = false; private static bool _wasUserPresent = false; /// /// True if the user is currently wearing the display. /// public bool isUserPresent { get { if (!_isUserPresentCached) { _isUserPresentCached = true; _isUserPresent = OVRPlugin.userPresent; } return _isUserPresent; } private set { _isUserPresentCached = true; _isUserPresent = value; } } private static bool prevAudioOutIdIsCached = false; private static bool prevAudioInIdIsCached = false; private static string prevAudioOutId = string.Empty; private static string prevAudioInId = string.Empty; private static bool wasPositionTracked = false; public static System.Version utilitiesVersion { get { return OVRPlugin.wrapperVersion; } } public static System.Version pluginVersion { get { return OVRPlugin.version; } } public static System.Version sdkVersion { get { return OVRPlugin.nativeSDKVersion; } } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID private static bool MixedRealityEnabledFromCmd() { var args = System.Environment.GetCommandLineArgs(); for (int i = 0; i < args.Length; i++) { if (args[i].ToLower() == "-mixedreality") return true; } return false; } private static bool UseDirectCompositionFromCmd() { var args = System.Environment.GetCommandLineArgs(); for (int i = 0; i < args.Length; i++) { if (args[i].ToLower() == "-directcomposition") return true; } return false; } private static bool UseExternalCompositionFromCmd() { var args = System.Environment.GetCommandLineArgs(); for (int i = 0; i < args.Length; i++) { if (args[i].ToLower() == "-externalcomposition") return true; } return false; } private static bool CreateMixedRealityCaptureConfigurationFileFromCmd() { var args = System.Environment.GetCommandLineArgs(); for (int i = 0; i < args.Length; i++) { if (args[i].ToLower() == "-create_mrc_config") return true; } return false; } private static bool LoadMixedRealityCaptureConfigurationFileFromCmd() { var args = System.Environment.GetCommandLineArgs(); for (int i = 0; i < args.Length; i++) { if (args[i].ToLower() == "-load_mrc_config") return true; } return false; } #endif public static bool IsUnityAlphaOrBetaVersion() { string ver = Application.unityVersion; int pos = ver.Length - 1; while (pos >= 0 && ver[pos] >= '0' && ver[pos] <= '9') { --pos; } if (pos >= 0 && (ver[pos] == 'a' || ver[pos] == 'b')) return true; return false; } public static string UnityAlphaOrBetaVersionWarningMessage = "WARNING: It's not recommended to use Unity alpha/beta release in Oculus development. Use a stable release if you encounter any issue."; #region Unity Messages public static bool OVRManagerinitialized = false; private void InitOVRManager() { // Only allow one instance at runtime. if (instance != null) { enabled = false; DestroyImmediate(this); return; } instance = this; // uncomment the following line to disable the callstack printed to log //Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None); // TEMPORARY Debug.Log("Unity v" + Application.unityVersion + ", " + "Oculus Utilities v" + OVRPlugin.wrapperVersion + ", " + "OVRPlugin v" + OVRPlugin.version + ", " + "SDK v" + OVRPlugin.nativeSDKVersion + "."); #if !UNITY_EDITOR if (IsUnityAlphaOrBetaVersion()) { Debug.LogWarning(UnityAlphaOrBetaVersionWarningMessage); } #endif #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN var supportedTypes = UnityEngine.Rendering.GraphicsDeviceType.Direct3D11.ToString() + ", " + UnityEngine.Rendering.GraphicsDeviceType.Direct3D12.ToString(); if (!supportedTypes.Contains(SystemInfo.graphicsDeviceType.ToString())) Debug.LogWarning("VR rendering requires one of the following device types: (" + supportedTypes + "). Your graphics device: " + SystemInfo.graphicsDeviceType.ToString()); #endif // Detect whether this platform is a supported platform RuntimePlatform currPlatform = Application.platform; if (currPlatform == RuntimePlatform.Android || // currPlatform == RuntimePlatform.LinuxPlayer || currPlatform == RuntimePlatform.OSXEditor || currPlatform == RuntimePlatform.OSXPlayer || currPlatform == RuntimePlatform.WindowsEditor || currPlatform == RuntimePlatform.WindowsPlayer) { isSupportedPlatform = true; } else { isSupportedPlatform = false; } if (!isSupportedPlatform) { Debug.LogWarning("This platform is unsupported"); return; } #if UNITY_ANDROID && !UNITY_EDITOR // Turn off chromatic aberration by default to save texture bandwidth. chromatic = false; #endif #if (UNITY_STANDALONE_WIN || UNITY_ANDROID) && !UNITY_EDITOR enableMixedReality = false; // we should never start the standalone game in MxR mode, unless the command-line parameter is provided #endif #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN if (!staticMixedRealityCaptureInitialized) { bool loadMrcConfig = LoadMixedRealityCaptureConfigurationFileFromCmd(); bool createMrcConfig = CreateMixedRealityCaptureConfigurationFileFromCmd(); if (loadMrcConfig || createMrcConfig) { OVRMixedRealityCaptureSettings mrcSettings = ScriptableObject.CreateInstance(); mrcSettings.ReadFrom(this); if (loadMrcConfig) { mrcSettings.CombineWithConfigurationFile(); mrcSettings.ApplyTo(this); } if (createMrcConfig) { mrcSettings.WriteToConfigurationFile(); } ScriptableObject.Destroy(mrcSettings); } if (MixedRealityEnabledFromCmd()) { enableMixedReality = true; } if (enableMixedReality) { Debug.Log("OVR: Mixed Reality mode enabled"); if (UseDirectCompositionFromCmd()) { compositionMethod = CompositionMethod.Direct; } if (UseExternalCompositionFromCmd()) { compositionMethod = CompositionMethod.External; } Debug.Log("OVR: CompositionMethod : " + compositionMethod); } } #endif #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC StaticInitializeMixedRealityCapture(this); #endif #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN if (enableAdaptiveResolution && !OVRManager.IsAdaptiveResSupportedByEngine()) { enableAdaptiveResolution = false; UnityEngine.Debug.LogError("Your current Unity Engine " + Application.unityVersion + " might have issues to support adaptive resolution, please disable it under OVRManager"); } #endif Initialize(); if (resetTrackerOnLoad) display.RecenterPose(); if (Debug.isDebugBuild) { // Activate system metrics collection in Debug/Developerment build if (GetComponent() == null) { gameObject.AddComponent(); } OVRSystemPerfMetrics.OVRSystemPerfMetricsTcpServer perfTcpServer = GetComponent(); perfTcpServer.listeningPort = profilerTcpPort; if (!perfTcpServer.enabled) { perfTcpServer.enabled = true; } OVRPlugin.SetDeveloperMode(OVRPlugin.Bool.True); } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN // Force OcculusionMesh on all the time, you can change the value to false if you really need it be off for some reasons, // be aware there are performance drops if you don't use occlusionMesh. OVRPlugin.occlusionMesh = true; #endif OVRManagerinitialized = true; } private void Awake() { #if !USING_XR_SDK //For legacy, we should initialize OVRManager in all cases. //For now, in XR SDK, only initialize if OVRPlugin is initialized. InitOVRManager(); #else if (OVRPlugin.initialized) InitOVRManager(); #endif } #if UNITY_EDITOR private static bool _scriptsReloaded; [UnityEditor.Callbacks.DidReloadScripts] static void ScriptsReloaded() { _scriptsReloaded = true; } #endif void SetCurrentXRDevice() { #if USING_XR_SDK XRDisplaySubsystem currentDisplaySubsystem = GetCurrentDisplaySubsystem(); XRDisplaySubsystemDescriptor currentDisplaySubsystemDescriptor = GetCurrentDisplaySubsystemDescriptor(); #endif if (OVRPlugin.initialized) { loadedXRDevice = XRDevice.Oculus; } #if USING_XR_SDK else if (currentDisplaySubsystem != null && currentDisplaySubsystemDescriptor != null && currentDisplaySubsystem.running) #else else if (Settings.enabled) #endif { #if USING_XR_SDK string loadedXRDeviceName = currentDisplaySubsystemDescriptor.id; #else string loadedXRDeviceName = Settings.loadedDeviceName; #endif if (loadedXRDeviceName == OPENVR_UNITY_NAME_STR) loadedXRDevice = XRDevice.OpenVR; else loadedXRDevice = XRDevice.Unknown; } else { loadedXRDevice = XRDevice.Unknown; } } #if USING_XR_SDK public static XRDisplaySubsystem GetCurrentDisplaySubsystem() { List displaySubsystems = new List(); SubsystemManager.GetInstances(displaySubsystems); //Note: Here we are making the assumption that there will always be one valid display subsystem. If there is not, then submitFrame isn't being called, //so for now this is a fine assumption to make. if (displaySubsystems.Count > 0) return displaySubsystems[0]; return null; } public static XRDisplaySubsystemDescriptor GetCurrentDisplaySubsystemDescriptor() { List displaySubsystemDescriptors = new List(); SubsystemManager.GetSubsystemDescriptors(displaySubsystemDescriptors); if (displaySubsystemDescriptors.Count > 0) return displaySubsystemDescriptors[0]; return null; } #endif void Initialize() { if (display == null) display = new OVRDisplay(); if (tracker == null) tracker = new OVRTracker(); if (boundary == null) boundary = new OVRBoundary(); reorientHMDOnControllerRecenter = _reorientHMDOnControllerRecenter; SetCurrentXRDevice(); } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC private bool suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; #endif private void Update() { //Only if we're using the XR SDK do we have to check if OVRManager isn't yet initialized, and init it. //If we're on legacy, we know initialization occurred properly in Awake() #if USING_XR_SDK if (!OVRManagerinitialized) { XRDisplaySubsystem currentDisplaySubsystem = GetCurrentDisplaySubsystem(); XRDisplaySubsystemDescriptor currentDisplaySubsystemDescriptor = GetCurrentDisplaySubsystemDescriptor(); if (currentDisplaySubsystem == null || currentDisplaySubsystemDescriptor == null || !OVRPlugin.initialized) return; //If we're using the XR SDK and the display subsystem is present, and OVRPlugin is initialized, we can init OVRManager InitOVRManager(); } #endif #if UNITY_EDITOR if (_scriptsReloaded) { _scriptsReloaded = false; instance = this; Initialize(); } #endif SetCurrentXRDevice(); if (OVRPlugin.shouldQuit) { Debug.Log("[OVRManager] OVRPlugin.shouldQuit detected"); #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC StaticShutdownMixedRealityCapture(instance); #endif Application.Quit(); } if (AllowRecenter && OVRPlugin.shouldRecenter) { OVRManager.display.RecenterPose(); } if (trackingOriginType != _trackingOriginType) trackingOriginType = _trackingOriginType; tracker.isEnabled = usePositionTracking; OVRPlugin.rotation = useRotationTracking; OVRPlugin.useIPDInPositionTracking = useIPDInPositionTracking; // Dispatch HMD events. isHmdPresent = OVRNodeStateProperties.IsHmdPresent(); if (useRecommendedMSAALevel && QualitySettings.antiAliasing != display.recommendedMSAALevel) { Debug.Log("The current MSAA level is " + QualitySettings.antiAliasing + ", but the recommended MSAA level is " + display.recommendedMSAALevel + ". Switching to the recommended level."); QualitySettings.antiAliasing = display.recommendedMSAALevel; } if (monoscopic != _monoscopic) { monoscopic = _monoscopic; } if (headPoseRelativeOffsetRotation != _headPoseRelativeOffsetRotation) { headPoseRelativeOffsetRotation = _headPoseRelativeOffsetRotation; } if (headPoseRelativeOffsetTranslation != _headPoseRelativeOffsetTranslation) { headPoseRelativeOffsetTranslation = _headPoseRelativeOffsetTranslation; } if (_wasHmdPresent && !isHmdPresent) { try { Debug.Log("[OVRManager] HMDLost event"); if (HMDLost != null) HMDLost(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } if (!_wasHmdPresent && isHmdPresent) { try { Debug.Log("[OVRManager] HMDAcquired event"); if (HMDAcquired != null) HMDAcquired(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } _wasHmdPresent = isHmdPresent; // Dispatch HMD mounted events. isUserPresent = OVRPlugin.userPresent; if (_wasUserPresent && !isUserPresent) { try { Debug.Log("[OVRManager] HMDUnmounted event"); if (HMDUnmounted != null) HMDUnmounted(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } if (!_wasUserPresent && isUserPresent) { try { Debug.Log("[OVRManager] HMDMounted event"); if (HMDMounted != null) HMDMounted(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } _wasUserPresent = isUserPresent; // Dispatch VR Focus events. hasVrFocus = OVRPlugin.hasVrFocus; if (_hadVrFocus && !hasVrFocus) { try { Debug.Log("[OVRManager] VrFocusLost event"); if (VrFocusLost != null) VrFocusLost(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } if (!_hadVrFocus && hasVrFocus) { try { Debug.Log("[OVRManager] VrFocusAcquired event"); if (VrFocusAcquired != null) VrFocusAcquired(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } _hadVrFocus = hasVrFocus; // Dispatch VR Input events. bool hasInputFocus = OVRPlugin.hasInputFocus; if (_hadInputFocus && !hasInputFocus) { try { Debug.Log("[OVRManager] InputFocusLost event"); if (InputFocusLost != null) InputFocusLost(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } if (!_hadInputFocus && hasInputFocus) { try { Debug.Log("[OVRManager] InputFocusAcquired event"); if (InputFocusAcquired != null) InputFocusAcquired(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } _hadInputFocus = hasInputFocus; // Changing effective rendering resolution dynamically according performance #if (UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN) if (enableAdaptiveResolution) { #if UNITY_2017_2_OR_NEWER if (Settings.eyeTextureResolutionScale < maxRenderScale) { // Allocate renderScale to max to avoid re-allocation Settings.eyeTextureResolutionScale = maxRenderScale; } else { // Adjusting maxRenderScale in case app started with a larger renderScale value maxRenderScale = Mathf.Max(maxRenderScale, Settings.eyeTextureResolutionScale); } minRenderScale = Mathf.Min(minRenderScale, maxRenderScale); float minViewportScale = minRenderScale / Settings.eyeTextureResolutionScale; float recommendedViewportScale = Mathf.Clamp(Mathf.Sqrt(OVRPlugin.GetAdaptiveGPUPerformanceScale()) * Settings.eyeTextureResolutionScale * Settings.renderViewportScale, 0.5f, 2.0f); recommendedViewportScale /= Settings.eyeTextureResolutionScale; recommendedViewportScale = Mathf.Clamp(recommendedViewportScale, minViewportScale, 1.0f); Settings.renderViewportScale = recommendedViewportScale; #else if (UnityEngine.VR.VRSettings.renderScale < maxRenderScale) { // Allocate renderScale to max to avoid re-allocation UnityEngine.VR.VRSettings.renderScale = maxRenderScale; } else { // Adjusting maxRenderScale in case app started with a larger renderScale value maxRenderScale = Mathf.Max(maxRenderScale, UnityEngine.VR.VRSettings.renderScale); } minRenderScale = Mathf.Min(minRenderScale, maxRenderScale); float minViewportScale = minRenderScale / UnityEngine.VR.VRSettings.renderScale; float recommendedViewportScale = OVRPlugin.GetEyeRecommendedResolutionScale() / UnityEngine.VR.VRSettings.renderScale; recommendedViewportScale = Mathf.Clamp(recommendedViewportScale, minViewportScale, 1.0f); UnityEngine.VR.VRSettings.renderViewportScale = recommendedViewportScale; #endif } #endif // Dispatch Audio Device events. string audioOutId = OVRPlugin.audioOutId; if (!prevAudioOutIdIsCached) { prevAudioOutId = audioOutId; prevAudioOutIdIsCached = true; } else if (audioOutId != prevAudioOutId) { try { Debug.Log("[OVRManager] AudioOutChanged event"); if (AudioOutChanged != null) AudioOutChanged(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } prevAudioOutId = audioOutId; } string audioInId = OVRPlugin.audioInId; if (!prevAudioInIdIsCached) { prevAudioInId = audioInId; prevAudioInIdIsCached = true; } else if (audioInId != prevAudioInId) { try { Debug.Log("[OVRManager] AudioInChanged event"); if (AudioInChanged != null) AudioInChanged(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } prevAudioInId = audioInId; } // Dispatch tracking events. if (wasPositionTracked && !tracker.isPositionTracked) { try { Debug.Log("[OVRManager] TrackingLost event"); if (TrackingLost != null) TrackingLost(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } if (!wasPositionTracked && tracker.isPositionTracked) { try { Debug.Log("[OVRManager] TrackingAcquired event"); if (TrackingAcquired != null) TrackingAcquired(); } catch (Exception e) { Debug.LogError("Caught Exception: " + e); } } wasPositionTracked = tracker.isPositionTracked; display.Update(); OVRInput.Update(); #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC StaticUpdateMixedRealityCapture(this); #endif } private bool multipleMainCameraWarningPresented = false; private Camera lastFoundMainCamera = null; private Camera FindMainCamera() { if (lastFoundMainCamera != null && lastFoundMainCamera.CompareTag("MainCamera")) { return lastFoundMainCamera; } Camera result = null; GameObject[] objects = GameObject.FindGameObjectsWithTag("MainCamera"); List cameras = new List(4); foreach (GameObject obj in objects) { Camera camera = obj.GetComponent(); if (camera != null && camera.enabled) { OVRCameraRig cameraRig = camera.GetComponentInParent(); if (cameraRig != null && cameraRig.trackingSpace != null) { cameras.Add(camera); } } } if (cameras.Count == 0) { result = Camera.main; // pick one of the cameras which tagged as "MainCamera" } else if (cameras.Count == 1) { result = cameras[0]; } else { if (!multipleMainCameraWarningPresented) { Debug.LogWarning("Multiple MainCamera found. Assume the real MainCamera is the camera with the least depth"); multipleMainCameraWarningPresented = true; } // return the camera with least depth cameras.Sort((Camera c0, Camera c1) => { return c0.depth < c1.depth ? -1 : (c0.depth > c1.depth ? 1 : 0); }); result = cameras[0]; } if (result != null) { Debug.LogFormat("[OVRManager] mainCamera found for MRC: ", result.gameObject.name); } else { Debug.Log("[OVRManager] unable to find a vaild camera"); } lastFoundMainCamera = result; return result; } private void OnDisable() { OVRSystemPerfMetrics.OVRSystemPerfMetricsTcpServer perfTcpServer = GetComponent(); if (perfTcpServer != null) { perfTcpServer.enabled = false; } } private void LateUpdate() { OVRHaptics.Process(); } private void FixedUpdate() { OVRInput.FixedUpdate(); } private void OnDestroy() { Debug.Log("[OVRManager] OnDestroy"); OVRManagerinitialized = false; } private void OnApplicationPause(bool pause) { if (pause) { Debug.Log("[OVRManager] OnApplicationPause(true)"); } else { Debug.Log("[OVRManager] OnApplicationPause(false)"); } } private void OnApplicationFocus(bool focus) { if (focus) { Debug.Log("[OVRManager] OnApplicationFocus(true)"); } else { Debug.Log("[OVRManager] OnApplicationFocus(false)"); } } private void OnApplicationQuit() { Debug.Log("[OVRManager] OnApplicationQuit"); } #endregion // Unity Messages /// /// Leaves the application/game and returns to the launcher/dashboard /// public void ReturnToLauncher() { // show the platform UI quit prompt OVRManager.PlatformUIConfirmQuit(); } public static void PlatformUIConfirmQuit() { if (!isHmdPresent) return; OVRPlugin.ShowUI(OVRPlugin.PlatformUI.ConfirmQuit); } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC public static bool staticMixedRealityCaptureInitialized = false; public static bool staticPrevEnableMixedRealityCapture = false; public static OVRMixedRealityCaptureSettings staticMrcSettings = null; public static void StaticInitializeMixedRealityCapture(OVRManager instance) { if (!staticMixedRealityCaptureInitialized) { staticMrcSettings = ScriptableObject.CreateInstance(); staticMrcSettings.ReadFrom(OVRManager.instance); #if OVR_ANDROID_MRC bool mediaInitialized = OVRPlugin.Media.Initialize(); Debug.Log(mediaInitialized ? "OVRPlugin.Media initialized" : "OVRPlugin.Media not initialized"); if (mediaInitialized) { OVRPlugin.Media.SetMrcAudioSampleRate(AudioSettings.outputSampleRate); Debug.LogFormat("[MRC] SetMrcAudioSampleRate({0})", AudioSettings.outputSampleRate); OVRPlugin.Media.SetMrcInputVideoBufferType(OVRPlugin.Media.InputVideoBufferType.TextureHandle); Debug.LogFormat("[MRC] Active InputVideoBufferType:{0}", OVRPlugin.Media.GetMrcInputVideoBufferType()); if (instance.mrcActivationMode == MrcActivationMode.Automatic) { OVRPlugin.Media.SetMrcActivationMode(OVRPlugin.Media.MrcActivationMode.Automatic); Debug.LogFormat("[MRC] ActivateMode: Automatic"); } else if (instance.mrcActivationMode == MrcActivationMode.Disabled) { OVRPlugin.Media.SetMrcActivationMode(OVRPlugin.Media.MrcActivationMode.Disabled); Debug.LogFormat("[MRC] ActivateMode: Disabled"); } } #endif staticPrevEnableMixedRealityCapture = false; staticMixedRealityCaptureInitialized = true; } else { staticMrcSettings.ApplyTo(instance); } } public static void StaticUpdateMixedRealityCapture(OVRManager instance) { if (!staticMixedRealityCaptureInitialized) { return; } #if OVR_ANDROID_MRC instance.enableMixedReality = OVRPlugin.Media.GetInitialized() && OVRPlugin.Media.IsMrcActivated(); instance.compositionMethod = CompositionMethod.External; // force external composition on Android MRC if (OVRPlugin.Media.GetInitialized()) { OVRPlugin.Media.Update(); } #endif if (instance.enableMixedReality && !staticPrevEnableMixedRealityCapture) { OVRPlugin.SendEvent("mixed_reality_capture", "activated"); Debug.Log("MixedRealityCapture: activate"); } if (!instance.enableMixedReality && staticPrevEnableMixedRealityCapture) { Debug.Log("MixedRealityCapture: deactivate"); } if (instance.enableMixedReality || staticPrevEnableMixedRealityCapture) { Camera mainCamera = instance.FindMainCamera(); if (Camera.main != null) { instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; if (instance.enableMixedReality) { OVRMixedReality.Update(instance.gameObject, mainCamera, instance.compositionMethod, instance.useDynamicLighting, instance.capturingCameraDevice, instance.depthQuality); } if (staticPrevEnableMixedRealityCapture && !instance.enableMixedReality) { OVRMixedReality.Cleanup(); } staticPrevEnableMixedRealityCapture = instance.enableMixedReality; } else { if (!instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning) { Debug.LogWarning("Main Camera is not set, Mixed Reality disabled"); instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning = true; } } } staticMrcSettings.ReadFrom(OVRManager.instance); } public static void StaticShutdownMixedRealityCapture(OVRManager instance) { if (staticMixedRealityCaptureInitialized) { ScriptableObject.Destroy(staticMrcSettings); staticMrcSettings = null; OVRMixedReality.Cleanup(); #if OVR_ANDROID_MRC if (OVRPlugin.Media.GetInitialized()) { OVRPlugin.Media.Shutdown(); } #endif staticMixedRealityCaptureInitialized = false; } } #endif }