IBuilderErrorEvent interface
đ Descriptionâ
Event interface for the OnError
hook, fired when the builder detects an error during loading.
tip
đ Type declarationâ
interface IBuilderErrorEvent { builder: Builder;Readonly erroneousBlocks: number;Readonly missingBlockTypes: string[];Readonly }
đąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.
đī¸ Propertiesâ
đˇī¸ builder
â
Contains a reference to the Builder
instance that generated the event.
Typeâ
đˇī¸ erroneousBlocks
â
Contains the number of blocks that could not load.
Typeâ
number
đˇī¸ missingBlockTypes
â
Contains an array of block type identifiers that are missing.
Typeâ
string[]