UnityEventCompatibility Class

Summary

Extension methods to give UltEvents similar APIs to UnityEngine.Events.UnityEvent.
Assembly
UltEvents.dll
Namespace
UltEvents
Base Types
  • Object
graph BT Type-->Base0["Object"] Type["UnityEventCompatibility"] class Type type-node

Syntax

public static class UnityEventCompatibility

Methods

Name Value Summary
AddListener(IUltEvent, Action) void
Adds the `action` to the UltEvents.IUltEvent.DynamicCalls.
static
AddListener<T0, T1, T2, T3>(IUltEvent<T0, T1, T2, T3>, Action<T0, T1, T2, T3>) void
Adds the `action` to the UltEvents.IUltEvent.DynamicCalls.
static
AddListener<T0, T1, T2>(IUltEvent<T0, T1, T2>, Action<T0, T1, T2>) void
Adds the `action` to the UltEvents.IUltEvent.DynamicCalls.
static
AddListener<T0, T1>(IUltEvent<T0, T1>, Action<T0, T1>) void
Adds the `action` to the UltEvents.IUltEvent.DynamicCalls.
static
AddListener<T0>(IUltEvent<T0>, Action<T0>) void
Adds the `action` to the UltEvents.IUltEvent.DynamicCalls.
static
RemoveListener(IUltEvent, Action) void
Removes the `action` from the UltEvents.IUltEvent.DynamicCalls.
static
RemoveListener<T0, T1, T2, T3>(IUltEvent<T0, T1, T2, T3>, Action<T0, T1, T2, T3>) void
Removes the `action` from the UltEvents.IUltEvent.DynamicCalls.
static
RemoveListener<T0, T1, T2>(IUltEvent<T0, T1, T2>, Action<T0, T1, T2>) void
Removes the `action` from the UltEvents.IUltEvent.DynamicCalls.
static
RemoveListener<T0, T1>(IUltEvent<T0, T1>, Action<T0, T1>) void
Removes the `action` from the UltEvents.IUltEvent.DynamicCalls.
static
RemoveListener<T0>(IUltEvent<T0>, Action<T0>) void
Removes the `action` from the UltEvents.IUltEvent.DynamicCalls.
static