Merge pull request #1033 from marauder2k9-torque/GuiInspectorFields

Add multi dimensional entries to inspector
This commit is contained in:
Areloch 2023-07-07 22:59:27 -05:00 committed by GitHub
commit cb766f2878
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 1024 additions and 8 deletions

View file

@ -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)
{