Files
2026-02-21 16:45:37 +08:00

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>();
}
}