Class EventInput

java.lang.Object
dev.boze.api.event.EventInput

public class EventInput extends Object
EventInput

Event called once a tick

Use this event to modify player movement input

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
     
    boolean
    Horizontal movement tags
    boolean
    Jumping and sneaking flags
    boolean
     
    boolean
     
    boolean
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • forward

      public boolean forward
      Horizontal movement tags
    • backward

      public boolean backward
    • left

      public boolean left
    • jumping

      public boolean jumping
      Jumping 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 movement
      backward - Current backward movement
      left - Current leftward movement
      right - Current rightward movement
      jumping - If the player is jumping
      sneaking - IF the player is sneaking
      Returns:
      The event instance