Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }