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.

OnEnterState.cs 352B

1234567891011
  1. namespace Unity.VisualScripting
  2. {
  3. /// <summary>
  4. /// Called in flow graphs nested in state graphs when the parent state node is entered.
  5. /// </summary>
  6. [UnitCategory("Events/State")]
  7. public class OnEnterState : ManualEventUnit<EmptyEventArgs>
  8. {
  9. protected override string hookName => StateEventHooks.OnEnterState;
  10. }
  11. }