Version: 5.3
public void RemoveListener (Events.UnityAction call);

파라미터

call Callback function.

설명

Remove a non-persistent listener from the UnityEvent.

Use this to remove callback that was added at runtime.

Only non-persistent listeners (i.e. listeners that were added at runtime using UnityEvent.AddListener) can be removed at runtime. If you add new delegates via the inspector they are "persistent" and can't be removed by script.