Beispiel #1
0
 public GrnUi(MainForm plugin)
 {
     this.File          = new GrnFile();
     this.FileName      = "Untitled";
     this.Plugin        = plugin;
     this.ExportSetting = GrnExportSetting.Model;
 }
Beispiel #2
0
 public void SaveUI()
 {
     // Export Settings
     this.ExportSetting = (GrnExportSetting)0;
     if (this.Plugin.grnExportModelCheckBox.Checked)
     {
         this.ExportSetting |= GrnExportSetting.Model;
     }
     if (this.Plugin.grnExportAnimCheckBox.Checked)
     {
         this.ExportSetting |= GrnExportSetting.Animation;
     }
 }
Beispiel #3
0
 public void SaveUI()
 {
     // Export Settings
     this.ExportSetting = (GrnExportSetting)0;
     if (this.Plugin.grnExportModelCheckBox.Checked)
     {
         this.ExportSetting |= GrnExportSetting.Model;
     }
     if (this.Plugin.grnExportAnimCheckBox.Checked)
     {
         this.ExportSetting |= GrnExportSetting.Animation;
     }
 }