Create
api.entity.Create(type, x, y, z, data)
Creates a new entity.
This function will automatically call the init
function for the specified entity type. It fails if there is no entity type that matches the provided type
.
Parameters:
Name
Type
Description
type
string
Defines the type of entity to spawn.
x
float
The position to spawn the entity, in terms of the x axis.
y
float
The position to spawn the entity, in terms of the y axis.
z
float
The position to spawn the entity, in terms of the z axis.
data
table
Custom lua table which can be used to store arbitrary data about the created entity.
Returns:
Type
Description
Entity
The entity which has been created, according to the parameters.
Example:
Create a new cat entity with custom data, whenever a chunk is loaded or reloaded.
Last updated