diff --git a/Runtime/Gizmos/DebugX.raycasts.cs b/Runtime/Gizmos/DebugX.raycasts.cs index ebb185f..ebf18c5 100644 --- a/Runtime/Gizmos/DebugX.raycasts.cs +++ b/Runtime/Gizmos/DebugX.raycasts.cs @@ -82,7 +82,7 @@ namespace DCFApixels [IN(LINE)] public DrawHandler BoxCast(Vector3 origin, Vector3 direction, Quaternion rotation, Vector3 size, RaycastHit hit) { - WireCube(origin, rotation, size * 2f); + this.WireCube(origin, rotation, size * 2f); if (hit.collider == null) { RayFade(origin, direction * 3f); @@ -93,7 +93,7 @@ namespace DCFApixels WidthOutLine(origin, end, size.x * 2f); Setup(Color.SetAlpha(ShadowAlphaMultiplier)).Line(origin, end); - WireCube(end, rotation, size * 2f); + this.WireCube(end, rotation, size * 2f); RaycastHit(hit); } diff --git a/Runtime/Utils/DrawHandlers.cs.meta b/Runtime/Utils/DrawHandlers.cs.meta new file mode 100644 index 0000000..76cf87a --- /dev/null +++ b/Runtime/Utils/DrawHandlers.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 442adce30e5fd8e4da0c243f5ba70a5d \ No newline at end of file