From 1203d4658c157a188b1ba78547f6d503069a6798 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 6 May 2019 18:44:30 +0200 Subject: [PATCH 1/2] Add missing doc. --- include/assimp/config.h.in | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/assimp/config.h.in b/include/assimp/config.h.in index 50a5512e2..ba027cf40 100644 --- a/include/assimp/config.h.in +++ b/include/assimp/config.h.in @@ -651,14 +651,18 @@ enum aiComponent // --------------------------------------------------------------------------- /** @brief Set whether the fbx importer will use the legacy embedded texture naming. -* -* The default value is false (0) -* Property type: bool -*/ + * + * The default value is false (0) + * Property type: bool + */ #define AI_CONFIG_IMPORT_FBX_EMBEDDED_TEXTURES_LEGACY_NAMING \ "AI_CONFIG_IMPORT_FBX_EMBEDDED_TEXTURES_LEGACY_NAMING" // --------------------------------------------------------------------------- +/** @brief Set wether the FBX importer shall not remove empty bones. + * + * Empty bone are often used to define connections for other models. + * #define AI_CONFIG_IMPORT_REMOVE_EMPTY_BONES \ "AI_CONFIG_IMPORT_REMOVE_EMPTY_BONES" From 02324123e54bd967c20070f99fcff58a80574003 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 6 May 2019 19:15:28 +0200 Subject: [PATCH 2/2] Fix typo in comment. --- include/assimp/config.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/assimp/config.h.in b/include/assimp/config.h.in index ba027cf40..07be7cdad 100644 --- a/include/assimp/config.h.in +++ b/include/assimp/config.h.in @@ -662,7 +662,7 @@ enum aiComponent /** @brief Set wether the FBX importer shall not remove empty bones. * * Empty bone are often used to define connections for other models. - * + */ #define AI_CONFIG_IMPORT_REMOVE_EMPTY_BONES \ "AI_CONFIG_IMPORT_REMOVE_EMPTY_BONES"