Game Development Community

Editing newly created Guis

by Daniel Magnan · in Torque Game Engine · 10/05/2006 (8:55 am) · 2 replies

I'm playing around with the GUI editor. I made a new gui and it shows up in the game as planned. However I can't seem to figure out how to go back and edit it. It does not appear in the middle drop down like the rest of the standard guis. How do you edit a gui you created?

#1
10/05/2006 (9:02 am)
You need to execute the GUI you created, and saved (I hope you saved it).

E.g. in client/init.cs
// Load up the shell GUIs
   exec("./ui/mainMenuGui.gui");
#2
10/05/2006 (9:17 am)
Doh! That did it thanks. I should have remembered that myself.