A context which provides information about a specific ticking area.

interface TickingArea {
    boundingBox: BlockBoundingBox;
    chunkCount: number;
    dimension: Dimension;
    identifier: string;
    isFullyLoaded: boolean;
}

Properties

boundingBox: BlockBoundingBox

The box which contains all the ticking blocks in the ticking area.

chunkCount: number

The number of chunks that the ticking area contains.

dimension: Dimension

The dimension the ticking area is located.

identifier: string

The unique identifier of the ticking area.

isFullyLoaded: boolean

Will be true if all the ticking areas chunks are loaded in ticking and false otherwise.