mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-04 23:39:22 +00:00
Move many mods to Deprecated folder, fix spelling
This commit is contained in:
parent
5e822cec8d
commit
0042590aa6
539 changed files with 7475 additions and 3120 deletions
18
.Deprecated/CVRGizmos/Popcron.Gizmos/Drawers/LineDrawer.cs
Normal file
18
.Deprecated/CVRGizmos/Popcron.Gizmos/Drawers/LineDrawer.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue