您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
35 行
939 B
35 行
939 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEngine.XR.ARFoundation;
|
|
|
|
[RequireComponent(typeof(ARFaceManager))]
|
|
public class DisplayFaceInfo : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
Text m_FaceInfoText;
|
|
|
|
public Text faceInfoText
|
|
{
|
|
get { return m_FaceInfoText; }
|
|
set { m_FaceInfoText = value; }
|
|
}
|
|
|
|
ARFaceManager m_FaceManager;
|
|
|
|
void Awake()
|
|
{
|
|
m_FaceManager = GetComponent<ARFaceManager>();
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
if (m_FaceManager.subsystem != null && faceInfoText != null)
|
|
{
|
|
faceInfoText.text = $"Supported number of tracked faces: {m_FaceManager.supportedFaceCount}\n" +
|
|
$"Max number of faces to track: {m_FaceManager.maximumFaceCount}\n" +
|
|
$"Number of tracked faces: {m_FaceManager.trackables.count}";
|
|
}
|
|
}
|
|
}
|