Game Development Community

GuiControlProfile (GuiDefaultProfile) question.

by Mark Barner · in Torque Game Engine · 08/02/2005 (5:10 pm) · 3 replies

In torque1_3\example\starter.fps\client\ui\customProfiles.cs

// border color
   border = false;
   borderColor   = "0 0 0"; 
   borderColorHL = "179 134 94";
   borderColorNA = "126 79 37";

   // font
   fontType = "Arial";
   fontSize = 14;

   fontColor = "0 0 0";
   fontColorHL = "32 100 100";
   fontColorNA = "0 0 0";
   fontColorSEL= "200 200 200";

What does the fontColorNA and fontColorSEL mean?

#1
08/02/2005 (5:50 pm)
I'm just guessing here, but could HL be High Lighted, SEL be Selected, and NA, well, no clue...
#2
08/02/2005 (6:05 pm)
Normal: Normal
HL: Highlighted
SEL: Selected
NA: Not active (disabled)

These are all from engine\gui\core\guiTypes.h, by the way.
#3
08/02/2005 (6:25 pm)
Thanks for the help guys!