update 0.9.0

This commit is contained in:
Rupert Hausberger 2016-08-06 02:19:59 +02:00
commit f1f8a1e846
4 changed files with 24 additions and 4 deletions

View file

@ -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) {