Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


VariableKind

Specifies the scope of a IVariable.
Read time 1 minuteLast updated 6 days ago

Definition

public enum VariableKind

Remarks

The VariableKind enum defines the scope of a variable relative to subgraph usage. It determines whether a variable is scoped locally to the current graph, passed into the graph from a parent (VariableKind.Input), or exposed back to the parent (VariableKind.Output).

Fields

Value

Description

InputA variable used as an input to a subgraph.
LocalA variable used only within the current graph.
OutputA variable used as an output from a subgraph.