public GrnUi(MainForm plugin) { this.File = new GrnFile(); this.FileName = "Untitled"; this.Plugin = plugin; this.ExportSetting = GrnExportSetting.Model; }
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; } }