mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +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
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ function AssetBrowser_addModuleWindow::CreateNewModule(%this)
|
||||||
{
|
{
|
||||||
ModuleId = %newModuleName;
|
ModuleId = %newModuleName;
|
||||||
versionId = 1;
|
versionId = 1;
|
||||||
ScriptFile = %newModuleName @ "." @ $TorqueScriptFileExtension;
|
ScriptFile = %newModuleName;
|
||||||
CreateFunction="onCreate";
|
CreateFunction="onCreate";
|
||||||
DestroyFunction="onDestroy";
|
DestroyFunction="onDestroy";
|
||||||
Group = "Game";
|
Group = "Game";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue