mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Merge pull request #1033 from marauder2k9-torque/GuiInspectorFields
Add multi dimensional entries to inspector
This commit is contained in:
commit
cb766f2878
10 changed files with 1024 additions and 8 deletions
|
|
@ -207,6 +207,26 @@ new GuiControlProfile (ToolsGuiTextBoldProfile : ToolsGuiTextProfile)
|
|||
fontType = "Arial Bold";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiXDimensionText ) )
|
||||
new GuiControlProfile (ToolsGuiXDimensionText : ToolsGuiTextBoldProfile)
|
||||
{
|
||||
fillColor = "255 129 123 120";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiYDimensionText ) )
|
||||
new GuiControlProfile (ToolsGuiYDimensionText : ToolsGuiTextBoldProfile)
|
||||
{
|
||||
fillColor = "129 255 123 120";
|
||||
};
|
||||
|
||||
|
||||
if( !isObject( ToolsGuiZDimensionText ) )
|
||||
new GuiControlProfile (ToolsGuiZDimensionText : ToolsGuiTextBoldProfile)
|
||||
{
|
||||
fillColor = "123 129 255 120";
|
||||
};
|
||||
|
||||
|
||||
if( !isObject( ToolsGuiTextBoldCenterProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTextBoldCenterProfile : ToolsGuiTextProfile)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue