wskazują na redaktor myszy
onEvent('update', function () {
pointTo(this, mouseX, mouseY);
});
function pointTo(obj, loc_x, loc_y) {
angle = Math.atan2(loc_x - obj.x, - (loc_y - obj.y) )*(180/Math.PI);
obj.rotation = angle;
}
Catking The Cat That Has An Extremely Long Username