NAK_CVR_Mods/.Deprecated/CVRGizmos/Popcron.Gizmos/Element.cs

11 lines
No EOL
224 B
C#

using UnityEngine;
namespace Popcron;
internal class Element
{
public Vector3[] points = { };
public Color color = Color.white;
public bool dashed = false;
public Matrix4x4 matrix = Matrix4x4.identity;
}