Click or drag to resize

ProxyCallConvention Enumeration

The method calling convention used when invoking a method.

Namespace:  UMod.Scripting
Assembly:  UMod (in UMod.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public enum ProxyCallConvention
Members
  Member nameValueDescription
StandardMethod0 Call the method as normal.
UnityCoroutine1 Call the method as a Unity coroutine. The method should return an 'IEnumerator' to be invoked as a coroutine. The method will be invoked and managed by a game object and updated every frame.
Any2 Call the method based on its return type. Methods that return 'IEnumerator' will be automatically invoked as a Unity coroutine.
See Also