AoMEngineLibrary.AMP.GrnMax.SaveUI C# (CSharp) Method

SaveUI() public method

public SaveUI ( ) : void
return void
        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;
            }
        }