mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Removed getCursorPosition
This commit is contained in:
22
js/Input.js
22
js/Input.js
@ -22,6 +22,25 @@ const Input = (() => {
|
||||
dragging = false;
|
||||
}
|
||||
|
||||
function getCursorPosition(e) {
|
||||
var x;
|
||||
var y;
|
||||
|
||||
if (e.pageX != undefined && e.pageY != undefined) {
|
||||
x = e.pageX;
|
||||
y = e.pageY;
|
||||
}
|
||||
else {
|
||||
x = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
|
||||
y = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
|
||||
}
|
||||
|
||||
x -= currentLayer.canvas.offsetLeft;
|
||||
y -= currentLayer.canvas.offsetTop;
|
||||
|
||||
return [Math.round(x), Math.round(y)];
|
||||
}
|
||||
|
||||
/** Just listens to hotkeys and calls the linked functions
|
||||
*
|
||||
* @param {*} e
|
||||
@ -155,6 +174,7 @@ const Input = (() => {
|
||||
return {
|
||||
spacePressed,
|
||||
isDragging,
|
||||
getCurrMouseEvent
|
||||
getCurrMouseEvent,
|
||||
getCursorPosition
|
||||
}
|
||||
})();
|
Reference in New Issue
Block a user