Przeglądaj źródła

Input mouse event data now includes the 'isCombo' parameter which will be true if the mouse event is part of a combo.

dev-tmpl
Bryan Miller 5 lat temu
rodzic
commit
6167e610f1
1 zmienionych plików z 4 dodań i 0 usunięć
  1. +4
    -0
      app/js/ui/Input.js

+ 4
- 0
app/js/ui/Input.js Wyświetl plik

@@ -474,6 +474,7 @@ export default class Input{
var ename = MouseEventName("mousemove");
var data = {
source: this,
isCombo: (ename.indexOf("+") >= 0),
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
@@ -503,6 +504,7 @@ export default class Input{
var ename = MouseEventName();
var data = {
source: this,
isCombo: (ename.indexOf("+") >= 0),
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
@@ -541,6 +543,7 @@ export default class Input{
this.__mouseLastAction = "mouseup";
var data = {
source: this,
isCombo: false,
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
@@ -566,6 +569,7 @@ export default class Input{
var ename = MouseEventName("wheel");
var data = {
source: this,
isCombo: (ename.indexOf("+") >= 0),
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,

Ładowanie…
Anuluj
Zapisz