Enum VariableKind
Namespace: Unity.VisualScripting
Syntax
public enum VariableKind
Fields
Name | Description | Value |
---|---|---|
Flow | Temporary variables local to the execution flow. |
0 |
Graph | Variables local to the current graph. |
1 |
Object | Variables shared across the current game object. |
2 |
Scene | Variables shared across the current scene. |
3 |
Application | Variables shared across scenes. These will be reset when the application quits. |
4 |
Saved | Variables that persist even after the application quits. Unity object references are not supported. |
5 |