mirror of
https://github.com/MapMakersAndProgrammers/Alternativa3D.git
synced 2025-10-26 09:59:10 -07:00
Add events: RIGHT_CLICK, RIGHT_MOUSE_DOWN, RIGHT_MOUSE_UP, MIDDLE_CLICK, MIDDLE_MOUSE_DOWN, MIDDLE_MOUSE_UP
This commit is contained in:
@@ -8,5 +8,4 @@ It is desirable to notify that Covered Software was "Powered by AlternativaPlatf
|
|||||||
|
|
||||||
Additional information
|
Additional information
|
||||||
Instruction "Compilation of Alternativa3D from source codes" you can find on our wiki:
|
Instruction "Compilation of Alternativa3D from source codes" you can find on our wiki:
|
||||||
http://wiki.alternativaplatform.com/Compilation_of_Alternativa3D_from_source_codes
|
http://wiki.alternativaplatform.com/Compilation_of_Alternativa3D_from_source_codes
|
||||||
.
|
|
||||||
@@ -46,6 +46,42 @@ package alternativa.engine3d.core.events {
|
|||||||
*/
|
*/
|
||||||
public static const MOUSE_UP:String = "mouseUp3D";
|
public static const MOUSE_UP:String = "mouseUp3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>rightClick3D</code> event object.
|
||||||
|
* @eventType rightClick3D
|
||||||
|
*/
|
||||||
|
public static const RIGHT_CLICK:String = "rightClick3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>rightMouseDown3D</code> event object.
|
||||||
|
* @eventType rightMouseDown3D
|
||||||
|
*/
|
||||||
|
public static const RIGHT_MOUSE_DOWN:String = "rightMouseDown3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>rightMouseUp3D</code> event object.
|
||||||
|
* @eventType rightMouseUp3D
|
||||||
|
*/
|
||||||
|
public static const RIGHT_MOUSE_UP:String = "rightMouseUp3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>middleClick3D</code> event object.
|
||||||
|
* @eventType middleClick3D
|
||||||
|
*/
|
||||||
|
public static const MIDDLE_CLICK:String = "middleClick3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>middleMouseDown3D</code> event object.
|
||||||
|
* @eventType middleMouseDown3D
|
||||||
|
*/
|
||||||
|
public static const MIDDLE_MOUSE_DOWN:String = "middleMouseDown3D";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the value of the <code>type</code> property of a <code>middleMouseUp</code> event object.
|
||||||
|
* @eventType middleMouseUp
|
||||||
|
*/
|
||||||
|
public static const MIDDLE_MOUSE_UP:String = "middleMouseUp";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the value of the <code>type</code> property of a <code>mouseOver3D</code> event object.
|
* Defines the value of the <code>type</code> property of a <code>mouseOver3D</code> event object.
|
||||||
* @eventType mouseOver3D
|
* @eventType mouseOver3D
|
||||||
|
|||||||
Reference in New Issue
Block a user