暫無描述
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.

StateEditor.cs 356B

123456789101112
  1. namespace Unity.VisualScripting
  2. {
  3. [Editor(typeof(IState))]
  4. public class StateEditor : GraphElementEditor<StateGraphContext>
  5. {
  6. public StateEditor(Metadata metadata) : base(metadata) { }
  7. protected IState state => (IState)element;
  8. protected new StateDescription description => (StateDescription)base.description;
  9. }
  10. }