mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
fix item->importStatus tagging in importer
This commit is contained in:
parent
c99c9cc365
commit
0760621212
|
|
@ -1409,7 +1409,7 @@ void AssetImporter::processImportAssets(AssetImportObject* assetItem)
|
|||
Con::executef(this, processCommand.c_str(), item);
|
||||
}
|
||||
|
||||
item->importStatus == AssetImportObject::Processed;
|
||||
item->importStatus = AssetImportObject::Processed;
|
||||
|
||||
//try recusing on the children(if any)
|
||||
processImportAssets(item);
|
||||
|
|
@ -2018,7 +2018,7 @@ void AssetImporter::validateAsset(AssetImportObject* assetItem)
|
|||
AssetQuery aQuery;
|
||||
U32 numAssetsFound = AssetDatabase.findAllAssets(&aQuery);
|
||||
|
||||
bool hasCollision = false;
|
||||
hasCollision = false;
|
||||
for (U32 i = 0; i < numAssetsFound; i++)
|
||||
{
|
||||
StringTableEntry assetId = aQuery.mAssetList[i];
|
||||
|
|
|
|||
Loading…
Reference in a new issue