------------------------------------------------------------------------------------------------ Executes the post processing step on the given imported data.
| 62 | // ------------------------------------------------------------------------------------------------ |
| 63 | // Executes the post processing step on the given imported data. |
| 64 | void DeboneProcess::SetupProperties(const Importer* pImp) { |
| 65 | // get the current value of the property |
| 66 | mAllOrNone = pImp->GetPropertyInteger(AI_CONFIG_PP_DB_ALL_OR_NONE,0)?true:false; |
| 67 | mThreshold = pImp->GetPropertyFloat(AI_CONFIG_PP_DB_THRESHOLD,AI_DEBONE_THRESHOLD); |
| 68 | } |
| 69 | |
| 70 | // ------------------------------------------------------------------------------------------------ |
| 71 | // Executes the post processing step on the given imported data. |
nothing calls this directly
no test coverage detected