We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A propose to change
if (id === this._primaryPointerID || id === -1) { this.rawX = o.rawX; // ADDED Exposing rawX to the stage objects this.rawY = o.rawY; // ADDED Exposing rawY to the stage objects this.mouseX = o.x; this.mouseY = o.y; this.mouseInBounds = o.inBounds; }
on the p._updatePointerPosition = function(id, e, pageX, pageY)
p._updatePointerPosition = function(id, e, pageX, pageY)
so that way an stage object can handle rawX rawY
rawX
rawY
What do you think?
The text was updated successfully, but these errors were encountered:
Finally I do it this way:
stage.on("stagemousemove", function (event) { this.rawX = event.rawX; this.rawY = event.rawY; });
Sorry, something went wrong.
No branches or pull requests
A propose to change
on the
p._updatePointerPosition = function(id, e, pageX, pageY)
so that way an stage object can handle
rawX
rawY
What do you think?
The text was updated successfully, but these errors were encountered: