Protected
constructorAdds a callback that will be called when a new entity is created.
runEntityCreatedEvent.ts
// register a new function that is called when a new entity is created.
const entityCreatedCallback = mc.world.events.entityCreate.subscribe((entityEvent: mc.EntityCreateEvent) => {
if (entityEvent && entityEvent.entity) {
log("New entity of type '" + +entityEvent.entity + "' created!", 1);
} else {
log("The entity event didn't work as expected.", -1);
}
});
Adds a callback that will be called when a new entity is created.
runEntityCreatedEvent.ts
// register a new function that is called when a new entity is created.
const entityCreatedCallback = mc.world.events.entityCreate.subscribe((entityEvent: mc.EntityCreateEvent) => {
if (entityEvent && entityEvent.entity) {
log("New entity of type '" + +entityEvent.entity + "' created!", 1);
} else {
log("The entity event didn't work as expected.", -1);
}
});
Removes a callback from being called when a new entity is created.
This function can throw errors.
unsubscribeEntityCreatedEvent.ts
if (entityCreatedCallbacks.length > 0) {
let callback = entityCreatedCallbacks.pop();
if (callback) {
mc.world.events.entityCreate.unsubscribe(callback);
}
}
Manages callbacks that are connected to when a new entity is created.