mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-06-11 16:04:00 +00:00
replace specific names for a universal getRegistrations
This commit is contained in:
parent
3aac9af35e
commit
d4e9275240
7 changed files with 28 additions and 28 deletions
|
|
@ -1302,9 +1302,9 @@ String TSShapeLoader::getFormatExtensions()
|
|||
{
|
||||
// "*.dsq TAB *.dae TAB
|
||||
StringBuilder output;
|
||||
for(U32 n = 0; n < TSShape::getShapeRegistrations().size(); ++n)
|
||||
for(U32 n = 0; n < TSShape::getRegistrations().size(); ++n)
|
||||
{
|
||||
TSShape::ShapeRegistration reg = TSShape::getShapeRegistrations()[n];
|
||||
TSShape::ShapeRegistration reg = TSShape::getRegistrations()[n];
|
||||
for (U32 i = 0; i < reg.extensions.size(); i++)
|
||||
{
|
||||
TSShape::ShapeFormat format = reg.extensions[i];
|
||||
|
|
@ -1320,9 +1320,9 @@ String TSShapeLoader::getFormatFilters()
|
|||
{
|
||||
// "DSQ Files|*.dsq|COLLADA Files|*.dae|"
|
||||
StringBuilder output;
|
||||
for (U32 n = 0; n < TSShape::getShapeRegistrations().size(); ++n)
|
||||
for (U32 n = 0; n < TSShape::getRegistrations().size(); ++n)
|
||||
{
|
||||
TSShape::ShapeRegistration reg = TSShape::getShapeRegistrations()[n];
|
||||
TSShape::ShapeRegistration reg = TSShape::getRegistrations()[n];
|
||||
for (U32 i = 0; i < reg.extensions.size(); i++)
|
||||
{
|
||||
TSShape::ShapeFormat format = reg.extensions[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue