From 196edffae890dcd295e39e485fb2644e4374338f Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Mon, 3 Mar 2025 17:16:16 +0800 Subject: [PATCH] stash --- Runtime/Gizmos/DebugX.raycasts.cs | 4 ++-- Runtime/Utils/DrawHandlers.cs.meta | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 Runtime/Utils/DrawHandlers.cs.meta 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