/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.State/IState.cs
36 строк
819 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
using System.Collections.Generic; using UnityEngine; namespace Unity.VisualScripting { public interface IState : IGraphElementWithDebugData, IGraphElementWithData { new StateGraph graph { get; } bool isStart { get; set; } bool canBeSource { get; } bool canBeDestination { get; } void OnBranchTo(Flow flow, IState destination); IEnumerable<IStateTransition> outgoingTransitions { get; } IEnumerable<IStateTransition> incomingTransitions { get; } IEnumerable<IStateTransition> transitions { get; } void OnEnter(Flow flow, StateEnterReason reason); void OnExit(Flow flow, StateExitReason reason); #region Widget Vector2 position { get; set; } float width { get; set; } #endregion } }