17 lines
204 B
C#
17 lines
204 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class mesh_measure_class
|
|
{
|
|
public bool hit;
|
|
|
|
public float height;
|
|
|
|
public float degree;
|
|
|
|
public Vector3 normal;
|
|
|
|
public Transform transform;
|
|
}
|