Game Development Community

Removing the large box that says Welcome to Torque Demo app visitor.

by Jason Campbell · in Torque 3D Beginner · 05/20/2014 (4:21 pm) · 3 replies

I can't seem to find it in the GUI Editor. How do I remove that box? It takes up almost a quarter of my screen.


#1
05/20/2014 (4:25 pm)
Ctrl H will hide the hud for you
#2
05/20/2014 (4:35 pm)
In scripts/gui/playGui.cs at line 36 find this
// Message hud dialog
   if ( isObject( MainChatHud ) )
   {
      Canvas.pushDialog( MainChatHud );
      chatHud.attach(HudMessageVector);
   }
and comment it out. MainChatHud is created elsewhere, but this is where it gets added to the HUD.
#3
05/20/2014 (5:12 pm)
Awesome. Thanks guys.