update 0.9.0
This commit is contained in:
parent
470f65cca4
commit
f1f8a1e846
4 changed files with 24 additions and 4 deletions
|
|
@ -47,15 +47,19 @@ function SAEO_Mouse() {
|
|||
};
|
||||
|
||||
this.mouseover = function(e) {
|
||||
//SAER.video.hideCursor(1);
|
||||
if (SAEV_config.video.hideCursor)
|
||||
SAER.video.hideCursor(true);
|
||||
|
||||
this.mousemove(e);
|
||||
lx = cx;
|
||||
ly = cy;
|
||||
};
|
||||
|
||||
this.mouseout = function(e) {
|
||||
//SAER.video.hideCursor(0);
|
||||
this.mouseup(e);
|
||||
|
||||
if (SAEV_config.video.hideCursor)
|
||||
SAER.video.hideCursor(false);
|
||||
};
|
||||
|
||||
this.mousemove = function(e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue