Interface IMouseSettings.ISpeedSettings

All Known Implementing Classes:
SpeedSettings
Enclosing interface:
IMouseSettings

public static interface IMouseSettings.ISpeedSettings
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The minimum time it takes to move the mouse to a target.
    int
    Random minimum time added to the base movement time.
    double
    When a movement is considered a small movement, the base time will be calculated as: baseTime / divider.
    For example: 2 means the movement will be twice as fast.
    void
    setMouseMovementBaseTime(int mouseMovementBaseTime)
    The minimum time it takes to move the mouse to a target.
    void
    setMouseMovementTimeVariation(int mouseMovementTimeVariation)
    Random minimum time added to the base movement time.
    void
    setSmallMovementSpeedDivider(double smallMovementSpeedDivider)
    When a movement is considered a small movement, the base time will be calculated as: baseTime / divider.
    For example: 2 means the movement will be twice as fast.
  • Method Details

    • getMouseMovementBaseTime

      int getMouseMovementBaseTime()
      The minimum time it takes to move the mouse to a target.
      Returns:
    • setMouseMovementBaseTime

      void setMouseMovementBaseTime(int mouseMovementBaseTime)
      The minimum time it takes to move the mouse to a target.
    • getMouseMovementTimeVariation

      int getMouseMovementTimeVariation()
      Random minimum time added to the base movement time.
      Returns:
    • setMouseMovementTimeVariation

      void setMouseMovementTimeVariation(int mouseMovementTimeVariation)
      Random minimum time added to the base movement time.
    • getSmallMovementSpeedDivider

      double getSmallMovementSpeedDivider()
      When a movement is considered a small movement, the base time will be calculated as: baseTime / divider.
      For example: 2 means the movement will be twice as fast.
      Returns:
    • setSmallMovementSpeedDivider

      void setSmallMovementSpeedDivider(double smallMovementSpeedDivider)
      When a movement is considered a small movement, the base time will be calculated as: baseTime / divider.
      For example: 2 means the movement will be twice as fast.