-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
# Changelog dev | ||
> This file is used to accumulate changes before a changelog for a release is | ||
> created. | ||
* Added option `--apply-scale` (or `-as`), which applies global scaling factor defined in the model file if enabled. For backwards compatibility this is by default disabled. | ||
* Added option `--pre-transform` (or `-as`), which pre-transforms the models and collapses all nodes into one if possible. For backwards compatibility this is by default disabled. | ||
* Reconfigured Assimp to do less post-processing on the models by default, as the old settings caused issues with some models. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog 3.16.7 | ||
This release reconfigures Assimp and adds new options to BBMOD CLI and DLL to give you more control over model conversion. | ||
|
||
* Reconfigured Assimp to do less post-processing on models by default, as the old settings could sometime cause issues and make the model unusable. | ||
* Added new option `--apply-scale` (or `-as`) to BBMOD CLI, which applies global scaling factor defined in the model file if enabled. For backwards compatibility this is by default disabled. | ||
* Added new option `--pre-transform` (or `-pt`) to BBMOD CLI, which pre-transforms the models and collapses all nodes into one if possible. For backwards compatibility this is by default disabled. | ||
* Added new method `get_apply_scale` to `BBMOD_DLL`, which checks whether the new "apply scale" option is enabled. | ||
* Added new method `set_apply_scale` to `BBMOD_DLL`, which enables/disables the new "apply scale" option. | ||
* Added new method `get_pre_transform` to `BBMOD_DLL`, which checks whether the new "pre-transform" option is enabled. | ||
* Added new method `set_pre_transform` to `BBMOD_DLL`, which enables/disables the new "pre-transform" option. |