MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / getFormatExtensions

Method getFormatExtensions

Engine/source/ts/loader/tsShapeLoader.cpp:1302–1313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1300}
1301
1302String TSShapeLoader::getFormatExtensions()
1303{
1304 // "*.dsq TAB *.dae TAB
1305 StringBuilder output;
1306 for(U32 n = 0; n < smFormats.size(); ++n)
1307 {
1308 output.append("*.");
1309 output.append(smFormats[n].mExtension);
1310 output.append("\t");
1311 }
1312 return output.end();
1313}
1314
1315String TSShapeLoader::getFormatFilters()
1316{

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.45
appendMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected