浏览代码

Added isMouseInBounds() and lastMousePosition() from Input.

dev-tmpl
Bryan Miller 6 年前
父节点
当前提交
f598b53dfa
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      app/js/ui/Input.js

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

this.__mouseLastButton = -1; this.__mouseLastButton = -1;
this.__mouseLastAction = ""; this.__mouseLastAction = "";
this.__mouseButtons = []; this.__mouseButtons = [];
this.__mouseInBounds = false;


this.__keyboardEnabled = false; this.__keyboardEnabled = false;
this.__mouseEnabled = false; this.__mouseEnabled = false;
} }
pos.x = Math.floor(pos.x); pos.x = Math.floor(pos.x);
pos.y = Math.floor(pos.y); pos.y = Math.floor(pos.y);
this.__mouseInBounds = pos.inbounds;
return pos; return pos;
}).bind(this); }).bind(this);


return false; return false;
} }


isMouseInBounds(){return this.__mouseInBounds;}
lastMousePosition(){
return [this.__mousePosition.x, this.__mousePosition.y];
}

listen(ename, func, owner=null, once=false){ listen(ename, func, owner=null, once=false){
if (([ if (([
"keyup", "keyup",

正在加载...
取消
保存