| 732 | } |
| 733 | |
| 734 | ModuleDefinition* AssetImporter::getModuleFromPath(Torque::Path filePath) |
| 735 | { |
| 736 | // Use a relative path so modules on mounted file systems will be found. |
| 737 | ModuleDefinition* moduleDef = ModuleDatabase.findModuleByFilePath(Platform::makeRelativePathName(filePath.getFullPath().c_str(), NULL)); |
| 738 | |
| 739 | return moduleDef; |
| 740 | } |
| 741 | |
| 742 | String AssetImporter::parseImageSuffixes(String assetName, String* suffixType) |
| 743 | { |
nothing calls this directly
no test coverage detected