using TNodeCore.Attribute; using TNodeCore.Models; using TNodeGraphViewImpl.Editor.NodeViews; namespace TNode.Editor.NodeViews{ [ViewComponent] public class DragBaseNodeView:BaseNodeView{ public DragBaseNodeView() : base(){ this.titleContainer.visible = false; this.titleContainer.RemoveFromHierarchy(); } } }