// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Physics { /// /// Attribute used to make an field render a dropdown generated from the current layers defined in the Tag Manager. /// [AttributeUsage(AttributeTargets.Field)] public sealed class PhysicsLayerAttribute : PropertyAttribute { public PhysicsLayerAttribute() { } } }