Package com.epicbot.api.shared.bot
Interface IMouseSettings.ISpeedSettings
-
- All Known Implementing Classes:
SpeedSettings
- Enclosing interface:
- IMouseSettings
public static interface IMouseSettings.ISpeedSettings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaxMouseMovementBaseTime()
The maximum time it takes to move the mouse to a target.int
getMaxMouseMovementTimeVariation()
Random maximum time added to the base movement time.double
getMaxSmallMovementSpeedDivider()
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.int
getMinMouseMovementBaseTime()
The minimum time it takes to move the mouse to a target.int
getMinMouseMovementTimeVariation()
Random minimum time added to the base movement time.double
getMinSmallMovementSpeedDivider()
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 Detail
-
getMinMouseMovementBaseTime
int getMinMouseMovementBaseTime()
The minimum time it takes to move the mouse to a target.- Returns:
-
getMaxMouseMovementBaseTime
int getMaxMouseMovementBaseTime()
The maximum time it takes to move the mouse to a target.- Returns:
-
getMinMouseMovementTimeVariation
int getMinMouseMovementTimeVariation()
Random minimum time added to the base movement time.- Returns:
-
getMaxMouseMovementTimeVariation
int getMaxMouseMovementTimeVariation()
Random maximum time added to the base movement time.- Returns:
-
getMinSmallMovementSpeedDivider
double getMinSmallMovementSpeedDivider()
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:
-
getMaxSmallMovementSpeedDivider
double getMaxSmallMovementSpeedDivider()
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:
-
-