initFunctionInvoking
Triggered when an init function is being invoked, as a result of startInitFunctionOrder.
Several onDataFileEntry may be triggered after this. After the init function finishes invoking, initFunctionInvoked will be triggered.
Event Data
This is the data
provided to the message event:
interface EventData {
eventName: 'initFunctionInvoking',
type: string,
name: string,
idx: number,
}
- eventName: The event name.
- type: The type of init function being invoked.
- name: The name of the init function.
- idx: The index of the init function.
Last modified September 19, 2024: feat(loading-screens): document events (#479) (059448a)