ReturningFunction Delegate
Represents a function that can be called from Yarn programs that returns a function.
public delegate object ReturningFunction(params Value[] parameters);
Parameters
Parameter | Description |
---|---|
Value[] parameters |
The parameters that this function has received. |
Return Type
Object
: The returned value from this function.
See Also
-
FunctionInfo
: Represents a function in aLibrary
. -
Function
: Represents a function that can be called from Yarn programs. -
Library
: A collection of functions that can be called from Yarn programs.
Source
Defined in YarnSpinner/Library.cs, line 17.