Package dev.boze.api.event
Class EventInput
java.lang.Object
dev.boze.api.event.EventInput
EventInput
Event called once a tick
Use this event to modify player movement input
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic EventInput
get
(boolean forward, boolean backward, boolean left, boolean right, boolean jumping, boolean sneaking) Gets the event instance - this is called by Boze, and should not be called by addons
-
Field Details
-
forward
public boolean forwardHorizontal movement tags -
backward
public boolean backward -
left
public boolean left -
right
public boolean right -
jumping
public boolean jumpingJumping and sneaking flags -
sneaking
public boolean sneaking
-
-
Constructor Details
-
EventInput
public EventInput()
-
-
Method Details
-
get
public static EventInput get(boolean forward, boolean backward, boolean left, boolean right, boolean jumping, boolean sneaking) Gets the event instance - this is called by Boze, and should not be called by addons- Parameters:
forward
- Current forward movementbackward
- Current backward movementleft
- Current leftward movementright
- Current rightward movementjumping
- If the player is jumpingsneaking
- IF the player is sneaking- Returns:
- The event instance
-