nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
356 Bytes
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;
}
}