Neon Addons API
  • Introduction
    • Informations
    • Ways of writing Addons
      • Java "Scripting"
      • Normal Java "Project"
  • Examples
    • Simple Chams
    • Simple ESP
    • Simple Ground Spoof Flight
    • Text Rendering
    • Sending/Intercepting Packets
    • Settings
  • The API
    • Addon API
      • AbstractNeonAddon
      • Objects
        • Events
          • NeonEvent
          • NeonPacketEvent
          • NeonPlayerMotionEvent
          • NeonPlayerMoveEvent
          • NeonPostProcessEvent
          • NeonRenderEvent
          • NeonRenderPlayerEvent
          • NeonRotationEvent
          • NeonGameTickEvent
        • Interfaces
          • INeon
          • INeonModuleManager
          • INeonModule
          • INeonSettingManager
          • INeonRenderer
          • INeonRectanglePublisher
          • INeonRoundRectanglePublisher
          • INeonMathUtil
          • INeonMovementUtil
          • INeonRotationUtil
          • INeonUnsafeFunctions
        • Other Types
          • NeonFontType
          • NeonNotificationType
          • NeonPair
          • NeonMusicMetadata
          • NeonMusicType
Powered by GitBook
On this page
  1. The API
  2. Addon API
  3. Objects
  4. Interfaces

INeonMovementUtil

public interface INeonMovementUtil {

    void setSpeed(NeonPlayerMoveEvent event, double speed);

    void setSpeed(double speed);

    void strafe(NeonPlayerMoveEvent event);

    void strafe();

    float getDirection();

    double getSpeed();

    double getBaseSpeedMultiplier();

    double getBPS();

    double getAverageBps();

    int getSpeedAmplifier();

}
PreviousINeonMathUtilNextINeonRotationUtil

Last updated 6 months ago