Docs fix in Application
This commit is contained in:
@@ -301,7 +301,6 @@ class Application extends Module {
|
|||||||
Called when a mouse move event is fired on the primary window
|
Called when a mouse move event is fired on the primary window
|
||||||
@param x The current x coordinate of the mouse
|
@param x The current x coordinate of the mouse
|
||||||
@param y The current y coordinate of the mouse
|
@param y The current y coordinate of the mouse
|
||||||
@param button The ID of the mouse button that was pressed
|
|
||||||
**/
|
**/
|
||||||
public function onMouseMove (x:Float, y:Float):Void { }
|
public function onMouseMove (x:Float, y:Float):Void { }
|
||||||
|
|
||||||
@@ -310,7 +309,6 @@ class Application extends Module {
|
|||||||
Called when a mouse move relative event is fired on the primary window
|
Called when a mouse move relative event is fired on the primary window
|
||||||
@param x The x movement of the mouse
|
@param x The x movement of the mouse
|
||||||
@param y The y movement of the mouse
|
@param y The y movement of the mouse
|
||||||
@param button The ID of the mouse button that was pressed
|
|
||||||
**/
|
**/
|
||||||
public function onMouseMoveRelative (x:Float, y:Float):Void { }
|
public function onMouseMoveRelative (x:Float, y:Float):Void { }
|
||||||
|
|
||||||
@@ -328,6 +326,7 @@ class Application extends Module {
|
|||||||
Called when a mouse wheel event is fired on the primary window
|
Called when a mouse wheel event is fired on the primary window
|
||||||
@param deltaX The amount of horizontal scrolling (if applicable)
|
@param deltaX The amount of horizontal scrolling (if applicable)
|
||||||
@param deltaY The amount of vertical scrolling (if applicable)
|
@param deltaY The amount of vertical scrolling (if applicable)
|
||||||
|
@param deltaMode The units of measurement used
|
||||||
**/
|
**/
|
||||||
public function onMouseWheel (deltaX:Float, deltaY:Float, deltaMode:MouseWheelMode):Void { }
|
public function onMouseWheel (deltaX:Float, deltaY:Float, deltaMode:MouseWheelMode):Void { }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user