Class ServerTickEvents
java.lang.Object
net.fabricmc.fabric.api.event.lifecycle.v1.ServerTickEvents
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
static interface
static interface
static interface
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Event<ServerTickEvents.EndTick>
Called at the end of the server tick.static final Event<ServerTickEvents.EndWorldTick>
Called at the end of a ServerWorld's tick.static final Event<ServerTickEvents.StartTick>
Called at the start of the server tick.static final Event<ServerTickEvents.StartWorldTick>
Called at the start of a ServerWorld's tick. -
Method Summary
-
Field Details
-
START_SERVER_TICK
Called at the start of the server tick. -
END_SERVER_TICK
Called at the end of the server tick. -
START_WORLD_TICK
Called at the start of a ServerWorld's tick. -
END_WORLD_TICK
Called at the end of a ServerWorld's tick.End of world tick may be used to start async computations for the next tick.
-