Tanoda
pb_RaycastHit.cs
Go to the documentation of this file.
1using UnityEngine;
2
3namespace GILES
4{
8 public class pb_RaycastHit
9 {
10 public Vector3 point;
11 public float distance;
12 public Vector3 normal;
13 public int[] triangle;
14 }
15}