| Package | org.flixel.system.replay |
| Class | public class MouseRecord |
| Inheritance | MouseRecord Object |
| Property | Defined By | ||
|---|---|---|---|
| button : int
The state of the left mouse button. | MouseRecord | ||
| wheel : int
The state of the mouse wheel. | MouseRecord | ||
| x : int
The main X value of the mouse in screen space. | MouseRecord | ||
| y : int
The main Y value of the mouse in screen space. | MouseRecord | ||
| Method | Defined By | ||
|---|---|---|---|
MouseRecord(X:int, Y:int, Button:int, Wheel:int)
Instantiate a new mouse input record. | MouseRecord | ||
| button | property |
public var button:intThe state of the left mouse button.
| wheel | property |
public var wheel:intThe state of the mouse wheel.
| x | property |
public var x:intThe main X value of the mouse in screen space.
| y | property |
public var y:intThe main Y value of the mouse in screen space.
| MouseRecord | () | Constructor |
public function MouseRecord(X:int, Y:int, Button:int, Wheel:int)Instantiate a new mouse input record.
ParametersX:int — The main X value of the mouse in screen space.
| |
Y:int — The main Y value of the mouse in screen space.
| |
Button:int — The state of the left mouse button.
| |
Wheel:int — The state of the mouse wheel.
|