瀏覽代碼

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 6 年之前
父節點
當前提交
6167e610f1
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. +4
    -0
      app/js/ui/Input.js

+ 4
- 0
app/js/ui/Input.js 查看文件

@@ -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,

Loading…
取消
儲存