Renamed Out to CurveOutline

This commit is contained in:
2026-06-13 21:18:55 +02:00
parent 1ab259d3f9
commit 035588e3db
15 changed files with 391 additions and 390 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
namespace _2DGAMELIB
{
//outline/path/line basically represents a curve :3
[Serializable]
public class CurveOutline
{
public List<Vector2D> ps = new List<Vector2D>();
public float Tension = 0.5f;
public bool Outline = true;
public CurveOutline()
{
}
public CurveOutline(CurveOutline CurveOutline)
{
ps = new List<Vector2D>(CurveOutline.ps);
Tension = CurveOutline.Tension;
Outline = CurveOutline.Outline;
}
}
}