From de7a6215459d6e42f227d489e206e8b319565e8a Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 2 Jun 2022 12:24:26 +0100 Subject: [PATCH] [ci skip] Rename DrawBox to DrawWireCube --- X10D.Unity.Tests/Assets/Tests/DebugExIntegrationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X10D.Unity.Tests/Assets/Tests/DebugExIntegrationTests.cs b/X10D.Unity.Tests/Assets/Tests/DebugExIntegrationTests.cs index b45ef09..cd517df 100644 --- a/X10D.Unity.Tests/Assets/Tests/DebugExIntegrationTests.cs +++ b/X10D.Unity.Tests/Assets/Tests/DebugExIntegrationTests.cs @@ -13,7 +13,7 @@ namespace X10D.Unity.Tests DebugEx.DrawLine(Vector3.zero, Vector3.up, Color.green); DebugEx.DrawLine(Vector3.zero, Vector3.forward, Color.blue); - DebugEx.DrawBox(new Vector3(1.5f, 0.5f, 0), Vector3.one * 0.5f, Color.yellow); + DebugEx.DrawWireCube(new Vector3(1.5f, 0.5f, 0), Vector3.one * 0.5f, Color.yellow); DebugEx.DrawRectangle(new Vector2(-1.5f, 0.5f), Vector2.one * -0.5f, Color.cyan); var circle = new CircleF(0.0f, 0.0f, 0.5f);