Documentation and examples here: http://hc.readthedocs.org/
- Capsule collider
Useage:
local shapes = require 'HC.shapes'
local cap = shapes.CapsuleShape(x, y, radius, length)
-- or
local world = HC.new(cellSize)
local cap = world:capsule(x, y, radius, length)
- Removed shapes no longer have their tranformation functions obliterated for no reason, so they can still be used and re-registered later.