DataDrivenEntityTriggerAfterEventSignal Class

Contains event registration related to firing of a data driven entity event - for example, the minecraft:ageable_grow_up event on a chicken.

Methods

subscribe

subscribe(callback: (arg: DataDrivenEntityTriggerAfterEvent) => void, options?: EntityDataDrivenTriggerEventOptions): (arg: DataDrivenEntityTriggerAfterEvent) => void

Adds a callback that will be called after a data driven entity event is triggered.

Parameters

Returns (arg: DataDrivenEntityTriggerAfterEvent) => void

Important

This function can't be called in read-only mode.

unsubscribe

unsubscribe(callback: (arg: DataDrivenEntityTriggerAfterEvent) => void): void

Removes a callback that will be called after a data driven entity event is triggered.

Parameters

Important

This function can't be called in read-only mode.

Warning

This function can throw errors.