|
@@ -42,7 +42,7 @@ module BABYLON {
|
|
|
this._pointerInput = (p, s) => {
|
|
|
var evt = <PointerEvent>p.event;
|
|
|
|
|
|
- if (this.buttons.indexOf(evt.button) === -1) {
|
|
|
+ if (p.type !== PointerEventTypes.POINTERMOVE && this.buttons.indexOf(evt.button) === -1) {
|
|
|
return;
|
|
|
}
|
|
|
|