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