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