mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
Standardizes project import copy behavior to validate if we're in-place importing to avoid erroring out needlessly with a new utility function
Fixed wrong variable preventing ImportConfig Editor from refreshing when selecting different configs Standardized DefaultImportConfig's settings against Legacy Import setting, specifically collision resolution behavior and appending _mat suffix to materials
This commit is contained in:
parent
da5cb56c83
commit
b8b94fdec9
5 changed files with 467 additions and 255 deletions
|
|
@ -2491,8 +2491,10 @@ function AssetBrowser::autoImportSimpleLooseFiles(%this)
|
|||
|
||||
while( %file !$= "" )
|
||||
{
|
||||
if(!strIsMatchExpr("*.asset.taml", %file) && !strIsMatchExpr("*.taml", %file) && !strIsMatchExpr("*.cached.dts", %file))
|
||||
if(!strIsMatchExpr("*.asset.taml", %file) && !strIsMatchExpr("*.taml", %file) && !strIsMatchExpr("*.cached.dts", %file)
|
||||
&& !strIsMatchExpr("*.cs", %file) && !strIsMatchExpr("*.tscript", %file) && !strIsMatchExpr("*.module", %file))
|
||||
{
|
||||
%aq.clear();
|
||||
%assetsFound = AssetDatabase.findAssetLooseFile(%aq, %file);
|
||||
|
||||
if(%assetsFound == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue