Exemplo n.º 1
0
        public MuuntObjectList(MuuntEditor editor)
        {
            InitializeComponent();
            ParentEditor = editor;

            treeView1.BackColor = FormThemes.BaseTheme.FormBackColor;
            treeView1.ForeColor = FormThemes.BaseTheme.FormForeColor;
        }
Exemplo n.º 2
0
        public MuuntEditor3D(MuuntEditor muuntEditor)
        {
            ParentEditor = muuntEditor;

            if (Runtime.UseLegacyGL)
            {
                gl_Control = new GL_ControlLegacy();
            }
            else
            {
                gl_Control = new GL_ControlModern();
            }

            gl_Control.Dock = System.Windows.Forms.DockStyle.Fill;
            Controls.Add(gl_Control);
        }
Exemplo n.º 3
0
 public MuuntPropertiesEditor(MuuntEditor editor)
 {
     InitializeComponent();
     ParentEditor = editor;
 }
Exemplo n.º 4
0
 public MuuntEditor2D(MuuntEditor editor)
 {
     ParentEditor = editor;
 }