10 lines
266 B
C#
10 lines
266 B
C#
using UnityEngine;
|
|
using UnityEngine.XR.Interaction.Toolkit.Interactables;
|
|
|
|
[RequireComponent(typeof(Collider))]
|
|
[RequireComponent(typeof(XRSimpleInteractable))]
|
|
public class RobotPoint : MonoBehaviour
|
|
{
|
|
[Tooltip("Point Index")]
|
|
public int pointIndex = -1;
|
|
} |