georgatos7
Member
|
Ms.Wheel() and APP_MS_EXCLUSIVE.
Hi.
Since it's my first post here i wanna say that i've been experimenting with Esenthel lately and even though i'm not very familiar with c++, i'm very pleased with the straightforward mentality, the awesome amount of features that it includes and the access to the basic level that it offers for each feature.
So to the point now, after the latest updates it seems that Ms.wheel() always returns 0 when App.flag=APP_MS_EXCLUSIVE is in effect so that even when i run the "Camera Modes" or the "Camera" tuts i can't change the Cam.dist throught the Ms.wheel() even thought that wasn't an issue before.
In order to make it work now it seems that i should comment out App.flag=APP_MS_EXCLUSIVE and go the manual way of clip and hide for the mouse.
void InitPre()
{
EE_INIT();
//App.flag=APP_MS_EXCLUSIVE;
}
bool Init()
{
Ms.clip(null, 1);
Ms.hide();
return true;
}
Is this intended or am i missing something here?
Thanks.
(This post was last modified: 03-09-2014 01:47 AM by georgatos7.)
|
|
03-08-2014 03:49 PM |
|
Esenthel
Administrator
|
RE: Ms.Wheel() and APP_MS_EXCLUSIVE.
Hello and welcome to the forums!
Thanks a lot for reporting this!
I'll fix it for next release.
|
|
03-08-2014 09:38 PM |
|
georgatos7
Member
|
RE: Ms.Wheel() and APP_MS_EXCLUSIVE.
Sure, glad i helped and thanks for the fast reply and support.
|
|
03-09-2014 01:50 AM |
|