------------------------------------------------------------------------------------------------ Setup configuration properties
| 91 | // ------------------------------------------------------------------------------------------------ |
| 92 | // Setup configuration properties |
| 93 | void LWOImporter::SetupProperties(const Importer *pImp) { |
| 94 | configSpeedFlag = (0 != pImp->GetPropertyInteger(AI_CONFIG_FAVOUR_SPEED, 0) ? true : false); |
| 95 | configLayerIndex = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_LWO_ONE_LAYER_ONLY, UINT_MAX); |
| 96 | configLayerName = pImp->GetPropertyString(AI_CONFIG_IMPORT_LWO_ONE_LAYER_ONLY, ""); |
| 97 | } |
| 98 | |
| 99 | // ------------------------------------------------------------------------------------------------ |
| 100 | // Get list of file extensions |
nothing calls this directly
no test coverage detected