// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.SpatialAwareness; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.SpatialObjectMeshObserver { /// /// Configuration profile for the spatial object mesh observer. /// [CreateAssetMenu(menuName = "Mixed Reality/Toolkit/Profiles/Spatial Object Mesh Observer Profile", fileName = "SpatialObjectMeshObserverProfile", order = 100)] public class SpatialObjectMeshObserverProfile : MixedRealitySpatialAwarenessMeshObserverProfile { [SerializeField] [Tooltip("The model containing the desired mesh data.")] private GameObject spatialMeshObject = null; /// /// The model containing the desired mesh data. /// public GameObject SpatialMeshObject => spatialMeshObject; } }