Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


UnregisterCallback

Remove callback from the instance.
Read time 1 minuteLast updated 13 days ago

Definition

UnregisterCallback<T>(EventCallback<T>, TrickleDown)

Remove callback from the instance.
public void UnregisterCallback<TEventType>(EventCallback<TEventType> callback, TrickleDown useTrickleDown = TrickleDown.NoTrickleDown) where TEventType : EventBase<TEventType>, new()

Parameters

The callback to remove. If this callback was never registered, nothing happens.

useTrickleDown

Set this parameter to true to remove the callback from the TrickleDown phase. Set this parameter to false to remove the callback from the BubbleUp phase.

UnregisterCallback<T, U>(EventCallback<T, T>, TrickleDown)

Remove callback from the instance.
public void UnregisterCallback<TEventType, TUserArgsType>(EventCallback<TEventType, TUserArgsType> callback, TrickleDown useTrickleDown = TrickleDown.NoTrickleDown) where TEventType : EventBase<TEventType>, new()

Parameters

The callback to remove. If this callback was never registered, nothing happens.

useTrickleDown

Set this parameter to true to remove the callback from the TrickleDown phase. Set this parameter to false to remove the callback from the BubbleUp phase.