コード例 #1
0
ファイル: DatumPlaneEditor.cs プロジェクト: Macad3D/Macad3D
        //--------------------------------------------------------------------------------------------------

        public override void Stop()
        {
            InteractiveContext.Current.PropertyPanelManager?.RemovePanel(_Panel);
            _Panel = null;
        }
コード例 #2
0
ファイル: DatumPlaneEditor.cs プロジェクト: Macad3D/Macad3D
        //--------------------------------------------------------------------------------------------------

        public override void Start()
        {
            _Panel = PropertyPanel.CreatePanel <DatumPlanePropertyPanel>(Entity);
            InteractiveContext.Current.PropertyPanelManager?.AddPanel(_Panel, PropertyPanelSortingKey.Body);
        }