A context which provides information about a specific ticking area.
export interface TickingArea { boundingBox: BlockBoundingBox; chunkCount: number; dimension: Dimension; identifier: string; isFullyLoaded: boolean;} Copy
export interface TickingArea { boundingBox: BlockBoundingBox; chunkCount: number; dimension: Dimension; identifier: string; isFullyLoaded: boolean;}
The box which contains all the ticking blocks in the ticking area.
The number of chunks that the ticking area contains.
The dimension the ticking area is located.
The unique identifier of the ticking area.
Will be true if all the ticking areas chunks are loaded in ticking and false otherwise.
A context which provides information about a specific ticking area.
Source