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