------------------------------------------------------------------------------------------------
| 124 | |
| 125 | // ------------------------------------------------------------------------------------------------ |
| 126 | void ColladaLoader::SetupProperties(const Importer *pImp) { |
| 127 | noSkeletonMesh = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_NO_SKELETON_MESHES, 0) != 0; |
| 128 | removeEmptyBones = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_REMOVE_EMPTY_BONES, true) != 0; |
| 129 | ignoreUpDirection = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_COLLADA_IGNORE_UP_DIRECTION, 0) != 0; |
| 130 | ignoreUnitSize = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_COLLADA_IGNORE_UNIT_SIZE, 0) != 0; |
| 131 | useColladaName = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_COLLADA_USE_COLLADA_NAMES, 0) != 0; |
| 132 | } |
| 133 | |
| 134 | // ------------------------------------------------------------------------------------------------ |
| 135 | // Get file extension list |
nothing calls this directly
no test coverage detected