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; }