Package | Description |
---|---|
agi.foundation.compatibility | |
agi.foundation.graphics.advanced |
Provides less commonly instantiated graphics types for the camera, mouse options, primitive options, and others.
|
Modifier and Type | Field and Description |
---|---|
static MouseButtons |
MouseButtons.LEFT
The left mouse button was pressed.
|
static MouseButtons |
MouseButtons.MIDDLE
The middle mouse button was pressed.
|
static MouseButtons |
MouseButtons.NONE
No mouse button was pressed.
|
static MouseButtons |
MouseButtons.RIGHT
The right mouse button was pressed.
|
static MouseButtons |
MouseButtons.XBUTTON1
The first XButton was pressed.
|
static MouseButtons |
MouseButtons.XBUTTON2
The second XButton was pressed.
|
Modifier and Type | Method and Description |
---|---|
MouseButtons |
MouseButtons.add(MouseButtons other)
Add the specified value to the current set and return the result.
|
static MouseButtons |
MouseButtons.getDefault()
Get the value that is considered to be the default.
|
static MouseButtons |
MouseButtons.getFromValue(int value)
Get the set of values that are associated with the given numeric value.
|
static MouseButtons |
MouseButtons.of(MouseButtons... enums)
Create a new value built by combining the specified values.
|
MouseButtons |
MouseButtons.remove(MouseButtons other)
Remove the specified value from the current set and return the result.
|
static MouseButtons[] |
MouseButtons.values()
Returns an array containing the constants of this enum type, in the order they're
declared.
|
Modifier and Type | Method and Description |
---|---|
MouseButtons |
MouseButtons.add(MouseButtons other)
Add the specified value to the current set and return the result.
|
boolean |
MouseButtons.contains(MouseButtons other)
Determines whether the specified value is present in the current set.
|
static MouseButtons |
MouseButtons.of(MouseButtons... enums)
Create a new value built by combining the specified values.
|
MouseButtons |
MouseButtons.remove(MouseButtons other)
Remove the specified value from the current set and return the result.
|
Modifier and Type | Method and Description |
---|---|
MouseButtons |
MouseOptions.getHandledButtons()
Gets which of the
MouseButtons are being handled. |
Modifier and Type | Method and Description |
---|---|
void |
MouseOptions.setHandledButtons(MouseButtons value)
Sets which of the
MouseButtons are being handled. |
void |
MouseOptions.setHandledButtons(MouseButtons buttons,
boolean value)
Sets whether the specified
MouseButtons will be handled or not. |