VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.xr.interaction.toolkit/Editor/Datums/FloatAffordanceThemeDatumPropertyDrawer.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03:00

16 lines
698 B
C#

using System;
using Unity.XR.CoreUtils.Datums.Editor;
using UnityEngine.XR.Interaction.Toolkit.AffordanceSystem.Theme.Primitives;
namespace UnityEditor.XR.Interaction.Toolkit.Datums.Editor
{
/// <summary>
/// Datum PropertyDrawer implementation for Float Affordance Themes.
/// </summary>
[CustomPropertyDrawer(typeof(FloatAffordanceThemeDatumProperty))]
[Obsolete("The Affordance System namespace and all associated classes have been deprecated. The existing affordance system will be moved, replaced and updated with a new interaction feedback system in a future version of XRI.")]
public class FloatAffordanceThemeDatumPropertyDrawer : DatumPropertyDrawer
{
}
}