From 6d302020f6d2cf024809bf28c6270c786479da22 Mon Sep 17 00:00:00 2001 From: MegaMech <7255464+MegaMech@users.noreply.github.com> Date: Sat, 29 Mar 2025 12:46:53 -0600 Subject: [PATCH] Cleanup 2 --- src/engine/editor/Gizmo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/editor/Gizmo.cpp b/src/engine/editor/Gizmo.cpp index 2aab8935f..554367a05 100644 --- a/src/engine/editor/Gizmo.cpp +++ b/src/engine/editor/Gizmo.cpp @@ -200,14 +200,14 @@ void Gizmo::Draw() { void Gizmo::DrawHandles() { Mat4 mainMtx; - + ApplyMatrixTransformations(mainMtx, Pos, Rot, {1, 1, 1}); Editor_AddMatrix(mainMtx, G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW); handle_f3dlite_material_lights = gdSPDefLights1( 0x7F, 0x7F, 0x7F, 0xFF, 0, 0, 0x49, 0x49, 0x49); - + Mat4 RedXMtx; ApplyMatrixTransformations(RedXMtx, FVector(Pos.x, Pos.y, Pos.z - _gizmoOffset), Rot, {0.05f, 0.05f, 0.05f}); Editor_AddMatrix(RedXMtx, G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);