[ci skip] Rename DrawBox to DrawWireCube

This commit is contained in:
Oliver Booth 2022-06-02 12:24:26 +01:00
parent e9e081b220
commit de7a621545
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace X10D.Unity.Tests
DebugEx.DrawLine(Vector3.zero, Vector3.up, Color.green); DebugEx.DrawLine(Vector3.zero, Vector3.up, Color.green);
DebugEx.DrawLine(Vector3.zero, Vector3.forward, Color.blue); 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); DebugEx.DrawRectangle(new Vector2(-1.5f, 0.5f), Vector2.one * -0.5f, Color.cyan);
var circle = new CircleF(0.0f, 0.0f, 0.5f); var circle = new CircleF(0.0f, 0.0f, 0.5f);