Class ClientResourceLoaderEvents
java.lang.Object
org.quiltmc.qsl.resource.loader.api.client.ClientResourceLoaderEvents
Events related to the resource loader of the Minecraft client.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceFunctional interface to be implemented on callbacks forEND_PACK_RELOAD.static interfaceFunctional interface to be implemented on callbacks forSTART_PACK_RELOAD. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Event<ClientResourceLoaderEvents.EndPackReload> An event indicating the end of the reloading of resource packs on the Minecraft client.static final Event<ClientResourceLoaderEvents.StartPackReload> An event indicating the start of the reloading of resource packs on the Minecraft client. -
Method Summary
-
Field Details
-
START_PACK_RELOAD
An event indicating the start of the reloading of resource packs on the Minecraft client.This event should not be used to load resources, use
ResourceLoader.registerReloader(IdentifiableResourceReloader)instead. -
END_PACK_RELOAD
An event indicating the end of the reloading of resource packs on the Minecraft client.This event should not be used to load resources, use
ResourceLoader.registerReloader(IdentifiableResourceReloader)instead.
-