A Number system variable that tracks the mouse's previous horizontal position.
pmouseX keeps track of the mouse's position relative to the top-left corner of the canvas. Its value is mouseX from the previous frame. For example, if the mouse was 50 pixels from the left edge of the canvas during the last frame, then pmouseX will be 50.
If touch is used instead of the mouse, then pmouseX will hold the x-coordinate of the last touch point.
Note: pmouseX is reset to the current mouseX value at the start of each touch event.
Ejemplos
Referencias Relacionadas
doubleClicked
Una función que se ejecuta una vez cuando el botón del mouse se hace doble click rápidamente.
exitPointerLock
Sale de un bloqueo de puntero iniciado con requestPointerLock.
mouseButton
Una variable de tipo String del sistema que contiene el valor del último botón del mouse presionado.
mouseClicked
Una función que se ejecuta una vez después de que se presiona y se suelta un botón del mouse.