1
0
mirror of https://github.com/xiaopeng12138/MaiDXR.git synced 2024-12-20 12:55:52 +01:00
MaiDXR/Assets/Oculus/VR/Scripts/Editor/OculusXRFeatureEnabler.cs

93 lines
2.9 KiB
C#
Raw Normal View History

2022-08-20 21:35:57 +02:00
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* Licensed under the Oculus SDK License Agreement (the "License");
* you may not use the Oculus 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/oculussdk/
*
* Unless required by applicable law or agreed to in writing, the Oculus 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_SDK_OPENXR
using System.IO;
using System.Linq;
using UnityEngine;
using UnityEditor;
using UnityEngine.XR.OpenXR;
using UnityEditor.XR.OpenXR.Features;
namespace Oculus.XR
{
/// <summary>
/// Automatically enables the OculusXRFeature feature
/// </summary>
[InitializeOnLoad]
public class OculusXRFeatureEnabler : MonoBehaviour
{
static OculusXRFeatureEnabler()
{
EditorApplication.update += EnableOculusXRFeature;
}
private static void EnableOculusXRFeature()
{
EditorApplication.update -= EnableOculusXRFeature;
bool unityRunningInBatchmode = false;
if (System.Environment.CommandLine.Contains("-batchmode"))
{
unityRunningInBatchmode = true;
}
bool needEnable = false;
var featureStandalone = FeatureHelpers.GetFeatureWithIdForBuildTarget(BuildTargetGroup.Standalone, OculusXRFeature.featureId);
var featureAndroid = FeatureHelpers.GetFeatureWithIdForBuildTarget(BuildTargetGroup.Android, OculusXRFeature.featureId);
if (featureStandalone != null && !featureStandalone.enabled)
needEnable = true;
if (featureAndroid != null && !featureAndroid.enabled)
needEnable = true;
if (needEnable && !unityRunningInBatchmode)
{
bool result = EditorUtility.DisplayDialog("Enable OculusXR Feature", "OculusXR Feature must be enabled in OpenXR Feature Groups to support Oculus Utilities. Do you want to enable it now?", "Enable", "Cancel");
if (!result)
{
needEnable = false;
EditorUtility.DisplayDialog("OculusXR Feature not enabled", "You can enable OculusXR Feature in XR Plugin-in Management / OpenXR for using Oculus Utilities functionalities. Please enable it in both Standalone and Android settings.", "Ok");
}
}
if (needEnable)
{
if (featureStandalone != null && !featureStandalone.enabled)
{
Debug.Log("OculusXRFeature enabled on Standalone");
featureStandalone.enabled = true;
}
if (featureAndroid != null && !featureAndroid.enabled)
{
Debug.Log("OculusXRFeature enabled on Android");
featureAndroid.enabled = true;
}
}
}
}
}
#endif