Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
        private void importFromUDKToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int n = listBox1.SelectedIndex;

            if (n == -1)
            {
                return;
            }
            int idx = Objects[n].index;

            MPOpt.SelectedObject = idx;
            MPOpt.pcc            = pcc;
            MPOpt.SelectedLOD    = getLOD();
            UDKCopy u = new UDKCopy();

            u.MdiParent = this.MdiParent;
            u.Show();
            u.WindowState = FormWindowState.Maximized;
        }
Exemplo n.º 2
0
        private void importFromUDKToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int n;

            if (stm != null)
            {
                n = stm.index;
            }
            else if (skm != null)
            {
                n = skm.MyIndex;
            }
            else
            {
                return;
            }
            UDKCopy u = new UDKCopy(Pcc as ME3Package, n, getLOD());

            u.Show();
        }
Exemplo n.º 3
0
 private void importFromUDKToolStripMenuItem_Click(object sender, EventArgs e)
 {
     int n = listBox1.SelectedIndex;
     if (n == -1)
         return;
     int idx = Objects[n].index;
     MPOpt.SelectedObject = idx;
     MPOpt.pcc = pcc;
     MPOpt.SelectedLOD = getLOD();
     UDKCopy u = new UDKCopy();
     u.MdiParent = this.MdiParent;
     u.Show();
     u.WindowState = FormWindowState.Maximized;
 }
Exemplo n.º 4
0
 private void importFromUDKToolStripMenuItem_Click(object sender, EventArgs e)
 {
     int n;
     if (stm != null)
     {
         n = stm.index;
     }
     else if (skm != null)
     {
         n = skm.MyIndex;
     }
     else
     {
         return;
     }
     UDKCopy u = new UDKCopy(pcc as ME3Package, n, getLOD());
     u.Show();
 }