Class: EntityRemoveBeforeEventSignal
Allows registration for an event that fires when an entity is being removed from the game (for example, unloaded, or a few seconds after they are dead.)
Constructors
new EntityRemoveBeforeEventSignal()
private
new EntityRemoveBeforeEventSignal():EntityRemoveBeforeEventSignal
Returns
Methods
subscribe()
subscribe(
callback
): (arg
) =>void
Parameters
Parameter | Type | Description |
---|---|---|
callback | (arg ) => void | Function to call. |
Returns
Function
Returns a closure that can be used in subsequent unsubscribe operations.
Parameters
Parameter | Type |
---|---|
arg | EntityRemoveBeforeEvent |
Returns
void
Remarks
Will call your function every time an entity is being removed from the game.
This function can't be called in read-only mode.
unsubscribe()
unsubscribe(
callback
):void
Parameters
Parameter | Type |
---|---|
callback | (arg ) => void |
Returns
void
Remarks
Unsubscribes your function from subsequent calls when an entity is being removed.
This function can't be called in read-only mode.