From 5189bef537f10c2fb9f4ef03972bbc0f6eae465a Mon Sep 17 00:00:00 2001 From: binarycat Date: Sat, 12 Mar 2022 14:06:55 -0500 Subject: [PATCH] cleanup --- code/editor.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/editor.lua b/code/editor.lua index fc066de..046948f 100644 --- a/code/editor.lua +++ b/code/editor.lua @@ -371,7 +371,6 @@ function drawEditorRooms() for _, room in pairs(LoadedObjects.Rooms) do love.graphics.setColor(0,0,100,1) room:asRect():draw("line") - --love.graphics.rectangle("line",room.from.x-Camera.pos.x, room.from.y-Camera.pos.y, room.width, room.height) end end @@ -383,12 +382,9 @@ end function doEditorMultiselect() local mousept = Camera:mouseGamePos() if editor.multiselect.box == nil then - print("sweep started") editor.multiselect.box = Rect:fromPoints(mousept, mousept) - print("box: "..tostring(editor.multiselect.box)) elseif editor.multiselect.sweeping then editor.multiselect.box.max = mousept - frameDebug("swept to "..tostring(mousept)) end end