24 lines
345 B
C#
24 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class line_list_class
|
|
{
|
|
public Color color;
|
|
|
|
public bool foldout;
|
|
|
|
public bool point_foldout;
|
|
|
|
public int point_length;
|
|
|
|
public List<Vector3> points;
|
|
|
|
public line_list_class()
|
|
{
|
|
color = new Color(1f, 0f, 0f);
|
|
points = new List<Vector3>();
|
|
}
|
|
}
|