ME3Explorer.LevelExplorer.LevelEditor.Leveleditor.LoadPCC C# (CSharp) Method

LoadPCC() public method

public LoadPCC ( string path ) : void
path string
return void
        public void LoadPCC(string path)
        {
            timer1.Enabled = false;
            DebugOutput.StartDebugger("LevelExplorer");
            LoadME3Package(path);
            SceneMan.AddLevel(pcc as ME3Package);
            timer1.Enabled = true;
        }

Usage Example

Esempio n. 1
0
        private void openInLeveleditorToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int n = listBox1.SelectedIndex;

            if (n == -1)
            {
                return;
            }
            DBEntry d = database[n];

            LevelEditor.Leveleditor led = new LevelEditor.Leveleditor();
            led.MdiParent = this.MdiParent;
            led.Show();
            led.WindowState = FormWindowState.Maximized;
            led.LoadPCC(d.filepath);
        }
All Usage Examples Of ME3Explorer.LevelExplorer.LevelEditor.Leveleditor::LoadPCC