Table of Contents

Class FunctionReference

Contains a reference to a MonoBehaviour method and its metadata.

[Serializable]
public class FunctionReference
Inheritance
object
FunctionReference

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