using TNode.Attribute; using UnityEngine.UIElements; namespace TNode.Editor.Inspector.InspectorImplementation{ /// /// Force these element to bind native c# property /// [NodeComponent] public class StringFieldItem:InspectorItem{ public StringFieldItem():base(){ CreateBindable(new TextField()); } } }