Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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