35vector<string> ModelReader::extensions = {{
"dae",
"dxf",
"fbx",
"glb",
"obj",
"tm"}};
37const vector<string>& ModelReader::getModelExtensions() {
44 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".dae") ==
true) {
47 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".dae") ==
true ||
48 StringTools::endsWith(StringTools::toLowerCase(fileName),
".dxf") ==
true ||
49 StringTools::endsWith(StringTools::toLowerCase(fileName),
".fbx") ==
true ||
50 StringTools::endsWith(StringTools::toLowerCase(fileName),
".obj") ==
true) {
53 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".glb") ==
true) {
56 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".tm") ==
true) {
62 Console::println(
"ModelReaderFBX::read(): Could not load 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 FBX 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.