This commit is contained in:
SoulliesOfficial
2025-06-06 10:14:55 -04:00
parent d4e860fa16
commit db4d131192
1088 changed files with 45704 additions and 2260 deletions

View File

@@ -0,0 +1,29 @@
using UnityEngine;
using System.Collections;
using UnityEditor;
using Dreamteck.Splines.Editor;
namespace Dreamteck.Splines.Primitives
{
public class RectangleEditor : PrimitiveEditor
{
public override string GetName()
{
return "Rectangle";
}
public override void Open(DreamteckSplinesEditor editor)
{
base.Open(editor);
primitive = new Rectangle();
primitive.offset = origin;
}
protected override void OnGUI()
{
base.OnGUI();
Rectangle rect = (Rectangle)primitive;
rect.size = EditorGUILayout.Vector2Field("Size", rect.size);
}
}
}