mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
fix ab CreateNewModule appending ScriptFile extension
exec et al no longer need the extension spelled out, and it can actively get in the way
This commit is contained in:
parent
1541a8cc68
commit
a2145bb398
|
|
@ -51,7 +51,7 @@ function AssetBrowser_addModuleWindow::CreateNewModule(%this)
|
|||
{
|
||||
ModuleId = %newModuleName;
|
||||
versionId = 1;
|
||||
ScriptFile = %newModuleName @ "." @ $TorqueScriptFileExtension;
|
||||
ScriptFile = %newModuleName;
|
||||
CreateFunction="onCreate";
|
||||
DestroyFunction="onDestroy";
|
||||
Group = "Game";
|
||||
|
|
|
|||
Loading…
Reference in a new issue