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