Adds new rectangle-shaped ticking area to the given dimension, covering only one chunk on given coordinates. It is actually a shortcut, which looks like this:
return addLoadedRectangle(dimension, name)
.start(x, z)
.end(x, z);
dimension where to create the ticking area
name of the area, that must be unique for the given dimension.
If you omit this parameter, the name will be set to default ("Area{N}"
), where {N}
is an incrementing integer).
object to load the created area. This method returns the same object as addLoadedRectangle, but in this case you don't need to specify start and end position of the area.
Adds new circle-shaped ticking area to the given dimension.
dimension where to create the ticking area
name of the area, that must be unique for the given dimension.
If you omit this parameter, the name will be set to default ("Area{N}"
), where {N}
is an incrementing integer).
object to specify center position and radius of your area, and then load it
Adds new rectangle-shaped ticking area to the given dimension.
dimension where to create the ticking area
name of the area, that must be unique for the given dimension.
If you omit this parameter, the name will be set to default ("Area{N}"
), where {N}
is an incrementing integer).
object to specify start and end position of your area, and then load it
whether a ticking area with given name exists in given dimension
Generated using TypeDoc
Module to work with loaded areas in the world. Actually a shortcut of TickingAreasManager class with more human-readable structure.
3.0