Version: Unity 6.4 Alpha (6000.4)
LanguageEnglish
  • C#

VariableKind

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Specifies the scope of a IVariable.

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 (Input), or exposed back to the parent (Output).

Properties

Property Description
Local A variable used only within the current graph.
Input A variable used as an input to a subgraph.
Output A variable used as an output from a subgraph.