mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 07:34:45 +00:00
Merge pull request #495 from JeffProgrammer/tsneo
TorqueScript Interpreter 2.0
This commit is contained in:
commit
6487e2eede
309 changed files with 9842 additions and 10062 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue