Package com.epicbot.api.shared.bot
Interface IMouseSettings.ISpeedSettings
- All Known Implementing Classes:
SpeedSettings
- Enclosing interface:
IMouseSettings
public static interface IMouseSettings.ISpeedSettings
-
Method Summary
Modifier and TypeMethodDescriptionintThe minimum time it takes to move the mouse to a target.intRandom minimum time added to the base movement time.doubleWhen 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.voidsetMouseMovementBaseTime(int mouseMovementBaseTime) The minimum time it takes to move the mouse to a target.voidsetMouseMovementTimeVariation(int mouseMovementTimeVariation) Random minimum time added to the base movement time.voidsetSmallMovementSpeedDivider(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.
-