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 public enum ProxyCallConvention
Members
| Member name | Value | Description |
---|
| StandardMethod | 0 |
Call the method as normal.
|
| UnityCoroutine | 1 |
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.
|
| Any | 2 |
Call the method based on its return type.
Methods that return 'IEnumerator' will be automatically invoked as a Unity coroutine.
|
See Also