您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
49 行
1.4 KiB
49 行
1.4 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.XR.ARFoundation;
|
|
|
|
/// <summary>
|
|
/// On ARKit, HDR light estimation only works in face tracking mode.
|
|
/// On ARCore, HDR light estimation only works when NOT in face tracking mode.
|
|
/// This script enables face tracking on iOS and disables it otherwise.
|
|
/// </summary>
|
|
[RequireComponent(typeof(ARSessionOrigin))]
|
|
[RequireComponent(typeof(ARFaceManager))]
|
|
public class PlatformSelector : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
GameObject m_WorldSpaceObject;
|
|
|
|
public GameObject worldSpaceObject
|
|
{
|
|
get => m_WorldSpaceObject;
|
|
set => m_WorldSpaceObject = value;
|
|
}
|
|
|
|
void OnEnable()
|
|
{
|
|
#if UNITY_IOS
|
|
GetComponent<ARFaceManager>().enabled = true;
|
|
#else
|
|
GetComponent<ARFaceManager>().enabled = false;
|
|
worldSpaceObject?.SetActive(true);
|
|
Application.onBeforeRender += OnBeforeRender;
|
|
#endif
|
|
}
|
|
|
|
void OnDisable()
|
|
{
|
|
GetComponent<ARFaceManager>().enabled = false;
|
|
Application.onBeforeRender -= OnBeforeRender;
|
|
}
|
|
|
|
void OnBeforeRender()
|
|
{
|
|
var camera = GetComponent<ARSessionOrigin>().camera;
|
|
if (camera && worldSpaceObject)
|
|
{
|
|
worldSpaceObject.transform.position = camera.transform.position + camera.transform.forward;
|
|
}
|
|
}
|
|
}
|