File size: 356 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | namespace Unity.VisualScripting
{
[Editor(typeof(IState))]
public class StateEditor : GraphElementEditor<StateGraphContext>
{
public StateEditor(Metadata metadata) : base(metadata) { }
protected IState state => (IState)element;
protected new StateDescription description => (StateDescription)base.description;
}
}
|