Bug in MouseEvent3D (Away3D 4.x)

Software: Away3D 4.x

Somokon, Member
Posted: 06 July 2011 08:48 PM   Total Posts: 75

At the moment MouseEvent3D does not detect whether the alt key is held.  It is fixed by changing in MouseEvent3D.as (lines 166-173)

result.localZ localZ;

   
result.ctrlKey ctrlKey;
   
result.shiftKey shiftKey;

   return 
result;

to

result.localZ localZ;

   
result.altKey altKey;
   
result.ctrlKey ctrlKey;
   
result.shiftKey shiftKey;

   return 
result;

 

   
   

X

Away3D Forum

Member Login

Username

Password

Remember_me



X