123456789101112131415161718192021222324252627282930 |
- namespace Rokid.UXR.Interaction {
- using UnityEngine;
-
- public interface ISelectSurface
- {
-
-
-
- Transform Transform { get; }
-
-
-
-
-
-
-
-
- bool Raycast(in Ray ray, out SurfaceHit hit, float maxDistance = 0);
-
-
-
-
-
-
-
-
- bool ClosestSurfacePoint(in Vector3 point, out SurfaceHit hit, float maxDistance = 0);
- }
- }
|