fix: remove stray print

This commit is contained in:
Kazhnuz 2021-07-18 09:45:08 +02:00
parent f60e56bf2e
commit 90976b7217
3 changed files with 0 additions and 4 deletions

View file

@ -99,11 +99,9 @@ end
function TweenManager:update(dt)
self.time = self.time + dt
print("tweens")
for key, tweenWrapper in pairs(self.tweens) do
if (self.time > tweenWrapper.start) then
print(key)
tweenWrapper.tween:update(dt)
if (self.time > tweenWrapper.clear) then
self.tweens[key] = nil

View file

@ -80,7 +80,6 @@ end
function CoreSystem:getArg(name, isNumber)
for _, arg in ipairs(self.args) do
print(arg)
local argData = utils.string.split(arg, "=")
if (argData[1] == name) then
if (isNumber == true) then

View file

@ -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")
else
for i, key in ipairs(structure) do
--print(i, key, table[i])
parsedTable[key] = table[i]
end
end