fix: remove stray print
This commit is contained in:
parent
f60e56bf2e
commit
90976b7217
3 changed files with 0 additions and 4 deletions
|
@ -99,11 +99,9 @@ end
|
||||||
|
|
||||||
function TweenManager:update(dt)
|
function TweenManager:update(dt)
|
||||||
self.time = self.time + dt
|
self.time = self.time + dt
|
||||||
print("tweens")
|
|
||||||
|
|
||||||
for key, tweenWrapper in pairs(self.tweens) do
|
for key, tweenWrapper in pairs(self.tweens) do
|
||||||
if (self.time > tweenWrapper.start) then
|
if (self.time > tweenWrapper.start) then
|
||||||
print(key)
|
|
||||||
tweenWrapper.tween:update(dt)
|
tweenWrapper.tween:update(dt)
|
||||||
if (self.time > tweenWrapper.clear) then
|
if (self.time > tweenWrapper.clear) then
|
||||||
self.tweens[key] = nil
|
self.tweens[key] = nil
|
||||||
|
|
|
@ -80,7 +80,6 @@ end
|
||||||
|
|
||||||
function CoreSystem:getArg(name, isNumber)
|
function CoreSystem:getArg(name, isNumber)
|
||||||
for _, arg in ipairs(self.args) do
|
for _, arg in ipairs(self.args) do
|
||||||
print(arg)
|
|
||||||
local argData = utils.string.split(arg, "=")
|
local argData = utils.string.split(arg, "=")
|
||||||
if (argData[1] == name) then
|
if (argData[1] == name) then
|
||||||
if (isNumber == true) then
|
if (isNumber == true) then
|
||||||
|
|
|
@ -114,7 +114,6 @@ function Table.parse(table, structure, nullableNbr)
|
||||||
error("The table to parse doesn't have the right number of arguments: " .. #table .. " instead of " .. #structure .. " and " .. nullableNbr .. " nullables")
|
error("The table to parse doesn't have the right number of arguments: " .. #table .. " instead of " .. #structure .. " and " .. nullableNbr .. " nullables")
|
||||||
else
|
else
|
||||||
for i, key in ipairs(structure) do
|
for i, key in ipairs(structure) do
|
||||||
--print(i, key, table[i])
|
|
||||||
parsedTable[key] = table[i]
|
parsedTable[key] = table[i]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue