33vector<string> ModelReader::extensions = {
"dae",
"glb",
"tm"};
35const vector<string>& ModelReader::getModelExtensions() {
42 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".dae") ==
true) {
45 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".glb") ==
true) {
48 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".tm") ==
true) {
54 Console::println(
"ModelLoader::read(): Could not read model: " + pathName +
"/" + fileName +
": " + (exception.what()));
Collada DAE model reader.
static Model * read(const string &pathName, const string &fileName)
Reads Collada DAE file.
static Model * read(const string &pathName, const string &fileName)
Reads GLTF file.
static Model * read(const string &pathName, const string &fileName)
Reads a model.
static STATIC_DLL_IMPEXT vector< string > extensions
static Model * read(const string &pathName, const string &fileName)
TDME model format reader.
Representation of a 3d model.
File system singleton class.
std::exception Exception
Exception base class.