Silly me, Lua doesn't work this way

This commit is contained in:
Matthias Richter 2011-11-13 16:00:08 +01:00
parent 956df262d5
commit ab08c5744b

View File

@ -51,7 +51,14 @@ local HC = Class{name = "HardonCollider", function(self, cell_size, callback_col
end} end}
function HC:clear() function HC:clear()
self = HC(self.hash.cell_size, self.on_collide, self.on_stop) self._active_shapes = {}
self._passive_shapes = {}
self._ghost_shapes = {}
self._current_shape_id = 0
self._shape_ids = setmetatable({}, {__mode = "k"}) -- reverse lookup
self.groups = {}
self._colliding_last_frame = {}
self._hash = Spatialhash(self.hash.cell_size)
return self return self
end end