- added param 'texture_file' to the Options class, it specifies the path to the texture file

- added param 'material_file_extension' to the Options class, it specifies the material file suffix, default is ".mat" as it was before, we needed it becuase Blender expects ".mtl"
- removed default and copy constructor and destructor as well as assignment operator, because these are not necessary here, see https://en.cppreference.com/w/cpp/language/rule_of_three

(Thanks to Philipp Auersperg-Castell for the patch )
This commit is contained in:
Jan Möbius
2022-03-07 10:30:52 +01:00
parent dbcb0bf50c
commit 7e670896a6
3 changed files with 27 additions and 31 deletions

View File

@@ -8,6 +8,12 @@
<tr valign=top><td><b>9.1</b> (?/?/?)</td><td>
<b>IO</b>
<ul>
<li>OBJ writer: Added param 'texture_file' to the Options class, it specifies the path to the texture file (Thanks to Philipp Auersperg-Castell for the patch)</li>
<li>OBJ writer: added param 'material_file_extension' to the Options class, it specifies the material file suffix, default is ".mat" as it was before. (Thanks to Philipp Auersperg-Castell for the patch)</li>
</ul>
<b>Build System</b>
<ul>
<li>Removed globbing for Core and Tools library include and source files</li>