$.drawColliders( )

Calls the .draw() of all colliders that exist

    Examples

    
    const leftExample = $.makeCircleCollider(50, $.h/2, 50);
    const rightExample = $.makeCircleCollider(100, $.h/2, 50);
    function update() {
        $.drawColliders();
    }