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