Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.State /IStateTransition.cs
| namespace Unity.VisualScripting | |
| { | |
| public interface IStateTransition : IGraphElementWithDebugData, IConnection<IState, IState> | |
| { | |
| void Branch(Flow flow); | |
| void OnEnter(Flow flow); | |
| void OnExit(Flow flow); | |
| } | |
| } | |