mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
more changes.
This commit is contained in:
parent
960db74733
commit
93500b6ac4
4 changed files with 185 additions and 40 deletions
|
|
@ -114,7 +114,7 @@ static void dumpVariable( Stream& stream,
|
|||
{
|
||||
// Skip variables defined in script.
|
||||
|
||||
if( !entry->value.isConsoleType() )
|
||||
if( entry->type <= Dictionary::Entry::TypeInternalString )
|
||||
return;
|
||||
|
||||
// Skip internals... don't export them.
|
||||
|
|
@ -149,7 +149,7 @@ static void dumpVariable( Stream& stream,
|
|||
|
||||
// Skip variables for which we can't decipher their type.
|
||||
|
||||
ConsoleBaseType* type = ConsoleBaseType::getType( entry->value.getType() );
|
||||
ConsoleBaseType* type = ConsoleBaseType::getType( entry->type );
|
||||
if( !type )
|
||||
{
|
||||
Con::errorf( "Can't find type for variable '%s'", entry->name );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue