Woring on features #1

Open
rayaman wants to merge 2 commits from v0.1.0 into master
2 changed files with 1 additions and 6 deletions
Showing only changes of commit 0d2fc4bf6b - Show all commits

View File

@ -41,7 +41,6 @@ function gui:newMenu(title, sx, position, trans, callback, t,t2)
function menu:Open(show)
if show then
if not menu.lock then
menu.visible = true
menu.lock = true
local t = to()
t.OnStop(function()
@ -89,7 +88,6 @@ function gui:newMenu(title, sx, position, trans, callback, t,t2)
end
end
end
menu.OnCreate = processor:newConnection()
local items = {}
function menu:addItem(text)

View File

@ -95,7 +95,6 @@ local function Hook(funcname, func)
love[funcname] = function(...) func({}, ...) end
end
end
-- Incase you define one of these methods, we need to process this after that
updater:newTask(function()
-- System
@ -577,7 +576,6 @@ function gui:newBase(typ, x, y, w, h, sx, sy, sw, sh, virtual)
end
return false
end
setmetatable(c, self)
c.__index = self.__index
c.__variables = {clip = {false, 0, 0, 0, 0}}
@ -1282,7 +1280,6 @@ function gui:newImageBase(typ, x, y, w, h, sx, sy, sw, sh)
c.scaleX = c.scaleX * -1
end
end
function c:getSource()
return IMAGE
end