NAK_CVR_Mods/CVRGizmos/Gizmo/Drawers/LineDrawer.cs
NotAKidoS 29060f71c1 Initial Upload
it working and not nuking fps... wow
2022-09-14 08:27:23 -05:00

19 lines
347 B
C#

using UnityEngine;
namespace Popcron
{
public class LineDrawer : Drawer
{
public LineDrawer()
{
}
public override int Draw(ref Vector3[] buffer, params object[] args)
{
buffer[0] = (Vector3)args[0];
buffer[1] = (Vector3)args[1];
return 2;
}
}
}