Merge pull request #495 from JeffProgrammer/tsneo

TorqueScript Interpreter 2.0
This commit is contained in:
Areloch 2021-09-09 19:22:15 -05:00 committed by GitHub
commit 6487e2eede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
309 changed files with 9842 additions and 10062 deletions

View file

@ -70,7 +70,7 @@ function ProjectImportWindow::selectOGFolder(%this)
%dlg = new OpenFolderDialog()
{
Title = "Select Export Folder";
Filters = %filter;
Filters = "";
DefaultFile = "data/";
ChangePath = false;
MustExist = true;
@ -626,7 +626,7 @@ function processLegacyShapeConstructorField(%line)
if(%foundAssets != 0)
{
%assetId = $ProjectImporter::assetQuery.getAsset(0);
echo("Legacy Project Importer - processing of legacy shape constructor addSequence line's value: " @ %value @ " has found a matching AssetId: " @ %assetId);
echo("Legacy Project Importer - processing of legacy shape constructor addSequence line's value: " @ %animSourcePath @ " has found a matching AssetId: " @ %assetId);
}
if(%assetId !$= "" && AssetDatabase.isDeclaredAsset(%assetId))
@ -1114,6 +1114,7 @@ function processGUIntoAsset(%guiName, %file)
warn("Processing GUI into asset: " @ %guiName @ ", file: " @ %file);
%filePath = filePath(%file);
%fileName = fileBase(%file);
%moduleDef = AssetBrowser.dirHandler.getModuleFromAddress(%file);
%moduleName = %moduleDef.ModuleId;
%modulePath = %moduleDef.ModulePath;
@ -1315,7 +1316,7 @@ function deleteAssetDefinitions()
%dlg = new OpenFolderDialog()
{
Title = "Select Folder";
Filters = %filter;
Filters = "";
DefaultFile = "data/";
ChangePath = false;
MustExist = true;