Hey Guys little Question.
I want to remove a key from a table the key is the object itself.
this works:
local t = collisionManager.getTargets() t[self] = nil
but this dosent
toolkit.removeKey(collisionManager.getTargets(), self) function toolkit.removekey(table, key) table[key] = nil end
can anyone help ?