Skip to content

Commit

Permalink
change default export settings for better export experience
Browse files Browse the repository at this point in the history
  • Loading branch information
yyc12345 committed Jan 29, 2022
1 parent 08ae16d commit 097adba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions config_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ void config_manager::LoadConfig(ExportConfig* cfg) {

needInitCfg:
//no config, set default and save it.
cfg->export_mode = EXPORTMODE_ALL;
cfg->export_mode = EXPORTMODE_GROUP;
cfg->selected_item = 0;
cfg->file_mode = FILEMODE_MULTIFILE;
cfg->file_mode = FILEMODE_ONEFILE;
cfg->export_folder = "";
cfg->omit_transform = TRUE;
cfg->right_hand = TRUE;
cfg->name_prefix = TRUE;
cfg->name_prefix = FALSE;
cfg->reposition_3dsmax = FALSE;
cfg->reposition_blender = FALSE;
cfg->export_mtl = TRUE;
cfg->export_texture = TRUE;
cfg->copy_texture = FALSE;
cfg->custom_texture_format = TRUE;
cfg->custom_texture_format = FALSE;
cfg->texture_format = "bmp";

SaveConfig(cfg);
Expand Down
2 changes: 1 addition & 1 deletion vt_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void PluginMenuCallback(int commandID) {
} else if (commandID == 1)
ShellExecute(NULL, "open", "https://github.com/yyc12345/vtobjplugin/issues", NULL, NULL, SW_SHOWNORMAL);
else if (commandID == 2)
AfxMessageBox("vtobjplugin v1.6 - An OBJ export plugin for Virtools.\nUnder GPL v3 License.\nProject homepage: https://github.com/yyc12345/vtobjplugin", MB_ICONINFORMATION + MB_OK);
AfxMessageBox("vtobjplugin v1.7 - An OBJ export plugin for Virtools.\nUnder GPL v3 License.\nProject homepage: https://github.com/yyc12345/vtobjplugin", MB_ICONINFORMATION + MB_OK);
else;

}

0 comments on commit 097adba

Please sign in to comment.