Answers for "point towards mouse wick editor"

0

point towards mouse wick editor

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;
}
Posted by: Guest on August-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language