Class FunctionReference
- Namespace
- Glitch9.AIDevKit.Components
Contains a reference to a MonoBehaviour method and its metadata.
[Serializable]
public class FunctionReference
- Inheritance
-
objectFunctionReference
Properties
Description
Optional description of the method.
public string Description { get; }
Property Value
- string
MethodName
The method name to invoke.
public string MethodName { get; }
Property Value
- string
Parameters
List of input parameters for the method.
public List<FunctionParameter> Parameters { get; }
Property Value
- List<FunctionParameter>
Target
The MonoBehaviour target where the method exists.
public MonoBehaviour Target { get; }
Property Value
- MonoBehaviour