/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Core/Variables/VariableKind.cs
37 строк
902 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
namespace Unity.VisualScripting { public enum VariableKind { /// <summary> /// Temporary variables local to the execution flow. /// </summary> Flow, /// <summary> /// Variables local to the current graph. /// </summary> Graph, /// <summary> /// Variables shared across the current game object. /// </summary> Object, /// <summary> /// Variables shared across the current scene. /// </summary> Scene, /// <summary> /// Variables shared across scenes. /// These will be reset when the application quits. /// </summary> Application, /// <summary> /// Variables that persist even after the application quits. /// Unity object references are not supported. /// </summary> Saved } }