There is an error on pointerMove event :
onPointerMove(args: PointerEventData) {
console.log(args.button)
}
If I press right click on onPointerMove args.button is 0, it’s 2 only when I Pointer Up. So I would like to exclude an action when i press my right click but it doesn’t work
Hi, this will be fixed once our WebXR refactor lands - as a workaround what you can do until then i think is calling const isLeftButton = args.pointerId !== 0 && this.context.input.getIsMouse(args.pointerId)