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.

StateGraphData.cs 275B

1234567891011
  1. namespace Unity.VisualScripting
  2. {
  3. public sealed class StateGraphData : GraphData<StateGraph>, IGraphEventListenerData
  4. {
  5. public bool isListening { get; set; }
  6. public StateGraphData(StateGraph definition) : base(definition)
  7. {
  8. }
  9. }
  10. }