mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
Merge pull request #665 from andr3wmac/multiformat
Support for large lists of shape formats.
This commit is contained in:
commit
cf5d48e6ef
10 changed files with 154 additions and 20 deletions
|
|
@ -45,6 +45,19 @@
|
|||
class TSShapeLoader
|
||||
{
|
||||
|
||||
// Supported Format List
|
||||
protected:
|
||||
struct ShapeFormat
|
||||
{
|
||||
String mName;
|
||||
String mExtension;
|
||||
};
|
||||
static Vector<ShapeFormat> smFormats;
|
||||
public:
|
||||
static void addFormat(String name, String extension);
|
||||
static String getFormatExtensions();
|
||||
static String getFormatFilters();
|
||||
|
||||
public:
|
||||
enum eLoadPhases
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue