mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-29 00:59:39 +00:00
Merge pull request #473 from Areloch/AssetScriptFileABFix
Misc. minor AB fixes
This commit is contained in:
commit
6e6f90b8f6
2 changed files with 30 additions and 3 deletions
|
|
@ -2877,11 +2877,12 @@ Torque::Path AssetImporter::importShapeAsset(AssetImportObject* assetItem)
|
|||
StringTableEntry assetName = StringTable->insert(assetItem->assetName.c_str());
|
||||
|
||||
String shapeFileName = assetItem->filePath.getFileName() + "." + assetItem->filePath.getExtension();
|
||||
String constructorFileName = assetItem->filePath.getFileName() + "." TORQUE_SCRIPT_EXTENSION;
|
||||
String assetPath = targetPath + "/" + shapeFileName;
|
||||
String constructorPath = targetPath + "/" + assetItem->filePath.getFileName() + "." TORQUE_SCRIPT_EXTENSION;
|
||||
String constructorPath = targetPath + "/" + constructorFileName;
|
||||
String tamlPath = targetPath + "/" + assetName + ".asset.taml";
|
||||
String originalPath = assetItem->filePath.getFullPath().c_str();
|
||||
String originalConstructorPath = assetItem->filePath.getPath() + "/" + assetItem->filePath.getFileName() + "." TORQUE_SCRIPT_EXTENSION;
|
||||
String originalConstructorPath = assetItem->filePath.getPath() + "/" + constructorFileName;
|
||||
|
||||
char qualifiedFromFile[2048];
|
||||
char qualifiedToFile[2048];
|
||||
|
|
@ -2896,6 +2897,7 @@ Torque::Path AssetImporter::importShapeAsset(AssetImportObject* assetItem)
|
|||
|
||||
newAsset->setAssetName(assetName);
|
||||
newAsset->setShapeFile(shapeFileName.c_str());
|
||||
newAsset->setShapeConstructorFile(constructorFileName.c_str());
|
||||
|
||||
AssetImportConfig* cachedConfig = new AssetImportConfig();;
|
||||
cachedConfig->registerObject();
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@ function AssetBrowser::selectAsset( %this, %asset )
|
|||
%this.changeAsset();
|
||||
}
|
||||
|
||||
EWInspectorWindow.refresh();
|
||||
Inspector.refresh();
|
||||
|
||||
AssetBrowser.hideDialog();
|
||||
}
|
||||
|
|
@ -270,6 +270,7 @@ function AssetBrowser::showDialog( %this, %AssetTypeFilter, %selectCallback, %ta
|
|||
AssetBrowser.fieldTargetObject = %targetObj;
|
||||
AssetBrowser.fieldTargetName = %fieldName;
|
||||
|
||||
Canvas.popDialog(AssetBrowser);
|
||||
Canvas.pushDialog(AssetBrowser);
|
||||
AssetBrowser.setVisible(1);
|
||||
AssetBrowserWindow.setVisible(1);
|
||||
|
|
@ -1701,6 +1702,30 @@ function AssetBrowser::doRebuildAssetArray(%this)
|
|||
%tscriptPattern = %breadcrumbPath @ "/" @ "*.tscript";
|
||||
for (%fullScriptPath = findFirstFile(%tscriptPattern); %fullScriptPath !$= ""; %fullScriptPath = findNextFile(%tscriptPattern))
|
||||
{
|
||||
//If it's associated to an asset, we'll want to do extra checks
|
||||
%assetQuery = new AssetQuery();
|
||||
%foundAssets = AssetDatabase.findAssetLooseFile(%assetQuery, %fullScriptPath);
|
||||
|
||||
if(%foundAssets != 0)
|
||||
{
|
||||
%doSkip = false;
|
||||
%count = %assetQuery.getCount();
|
||||
for(%i=0; %i < %count; %i++)
|
||||
{
|
||||
%assetId = %assetQuery.getAsset(%i);
|
||||
%foundAssetType = AssetDatabase.getAssetType(%assetId);
|
||||
|
||||
if(%foundAssetType !$= "ScriptAsset" && %foundAssetType !$= "GUIAsset")
|
||||
{
|
||||
%doSkip = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(%doSkip)
|
||||
continue;
|
||||
}
|
||||
|
||||
%tscriptPath = filePath(%fullScriptPath);
|
||||
%tscriptName = fileName(%fullScriptPath);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue