rotation

controls the facing of the image

Examples

const A = $.makeBoxCollider($.w/2,$.w/2,50,50);
A.fill = "#54d89f";

function update() {
    A.rotation += 1;
    A.draw();
}