Game Development Community

Trouble saving GUI.

by Mike Lipka · in Torque Game Engine · 12/28/2007 (8:53 pm) · 2 replies

Hi all I'm having a little problem here.
When I go into the GUI Editor I make a new GUI and name it 'selectServer', it saves into the UI folder as 'selectServer.gui'. Alright everything is fine, I can edit the GUI, make it popup.
When I exit the game and reload it, the GUI has completely disappeared. It is still inside the UI folder, but I cannot view it in the drop down box to select it, or load it from a command.
Can anyone tell me if I'm doing something wrong?

About the author

Recent Threads

  • Nodes?
  • TGE crashes

  • #1
    12/29/2007 (12:17 am)
    Try putting in an exec command.

    open up: client/init.cs

    Example path: Torque\example\starter.fps\client\init.cs

    scroll down till you see the other exec commands for the other gui's then add yours to the list, eg:

    exec("./ui/selectServer.gui");
    #2
    12/29/2007 (1:37 pm)
    Thanks a bunch Roland.