21 lines
706 B
C#
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;
|
|
}
|
|
}
|
|
}
|