VR4Medical/ICI/Library/PackageCache/com.unity.xr.interaction.toolkit@42ef3600567b/Runtime/UI/XRUIInputModule.deprecated.cs
2025-07-29 13:45:50 +03:00

21 lines
706 B
C#

using System;
namespace UnityEngine.XR.Interaction.Toolkit.UI
{
public partial class XRUIInputModule
{
/// <summary>
/// The maximum distance to ray cast with tracked devices to find hit objects.
/// </summary>
/// <remarks>
/// <c>maxRaycastDistance</c> has been deprecated. Its value was unused, calling this property is unnecessary and should be removed.
/// </remarks>
[Obsolete("maxRaycastDistance has been deprecated. Its value was unused, calling this property is unnecessary and should be removed.", true)]
public float maxRaycastDistance
{
get => default;
set => _ = value;
}
}
}