Class ClientWorldTickEvents
java.lang.Object
org.quiltmc.qsl.lifecycle.api.client.event.ClientWorldTickEvents
Events related to a ticking Minecraft client's world.
A note of warning
Callbacks registered to any of these events should ensure as little time as possible is spent executing, since the tick loop is a very hot code path.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Event<ClientWorldTickEvents.End> An event indicating that a world has finished being ticked.static final Event<ClientWorldTickEvents.Start> An event indicating that a world will be ticked. -
Method Summary
-
Field Details
-
START
An event indicating that a world will be ticked. -
END
An event indicating that a world has finished being ticked.
-