added script generator
This commit is contained in:
parent
dfcebc3f48
commit
b60997e76a
|
|
@ -63,7 +63,8 @@
|
||||||
"ClientScript Documentation",
|
"ClientScript Documentation",
|
||||||
"Asset Localizer",
|
"Asset Localizer",
|
||||||
"Splash Tester",
|
"Splash Tester",
|
||||||
"RBXMeshConverter GUI"});
|
"RBXMeshConverter GUI",
|
||||||
|
"ROBLOX Script Generator"});
|
||||||
this.listBox1.Location = new System.Drawing.Point(12, 70);
|
this.listBox1.Location = new System.Drawing.Point(12, 70);
|
||||||
this.listBox1.Name = "listBox1";
|
this.listBox1.Name = "listBox1";
|
||||||
this.listBox1.Size = new System.Drawing.Size(260, 95);
|
this.listBox1.Size = new System.Drawing.Size(260, 95);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
@ -71,6 +72,14 @@ namespace NovetusLauncher
|
||||||
Obj2MeshV1GUI obj = new Obj2MeshV1GUI();
|
Obj2MeshV1GUI obj = new Obj2MeshV1GUI();
|
||||||
obj.Show();
|
obj.Show();
|
||||||
}
|
}
|
||||||
|
else if (listBox1.SelectedIndex == 6)
|
||||||
|
{
|
||||||
|
Process proc = new Process();
|
||||||
|
proc.StartInfo.FileName = GlobalVars.ConfigDir + "\\RSG_1_4.exe";
|
||||||
|
proc.StartInfo.CreateNoWindow = false;
|
||||||
|
proc.StartInfo.UseShellExecute = false;
|
||||||
|
proc.Start();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue