Class EntityCreateEventSignal

Manages callbacks that are connected to when a new entity is created.

Hierarchy

  • EntityCreateEventSignal

Constructors

Methods

Constructors

Methods

  • Parameters

    • callback: ((arg) => void)

    Returns ((arg) => void)

      • (arg): void
      • Parameters

        Returns void

        Remarks

        Adds a callback that will be called when a new entity is created.

        Example

        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);
        }
        });

    Remarks

    Adds a callback that will be called when a new entity is created.

    Example

    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);
    }
    });
  • Parameters

    • callback: ((arg) => void)

    Returns void

    Remarks

    Removes a callback from being called when a new entity is created.

    Throws

    This function can throw errors.

    Example

    unsubscribeEntityCreatedEvent.ts

             if (entityCreatedCallbacks.length > 0) {
    let callback = entityCreatedCallbacks.pop();

    if (callback) {
    mc.world.events.entityCreate.unsubscribe(callback);
    }
    }