Package net.kyori.adventure.util
Interface Ticks
-
public interface Ticks
Standard game tick utilities.- Since:
- 4.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static long
SINGLE_TICK_DURATION_MS
A single tick duration, in milliseconds.static int
TICKS_PER_SECOND
The number of ticks that occur in one second.
-
Method Summary
Static Methods Modifier and Type Method Description static @NotNull java.time.Duration
duration(long ticks)
Converts ticks into aDuration
.
-
-
-
Field Detail
-
TICKS_PER_SECOND
static final int TICKS_PER_SECOND
The number of ticks that occur in one second.- Since:
- 4.0.0
- See Also:
- Constant Field Values
-
SINGLE_TICK_DURATION_MS
static final long SINGLE_TICK_DURATION_MS
A single tick duration, in milliseconds.- Since:
- 4.0.0
- See Also:
- Constant Field Values
-
-