説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IStateTransition.cs 243B

1234567891011
  1. namespace Unity.VisualScripting
  2. {
  3. public interface IStateTransition : IGraphElementWithDebugData, IConnection<IState, IState>
  4. {
  5. void Branch(Flow flow);
  6. void OnEnter(Flow flow);
  7. void OnExit(Flow flow);
  8. }
  9. }