mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 13:14:46 +00:00
guiprofiles now have additional options: borderSEL and borderERR in keeping with the fillcolor variants. fontColors now also takes an optional ERR entry on the backend, though that remains unleveraged at time of writing. guiiconbuttonctrl now uses the expanded list in conjunction with renderFilledBorder asset browser profiles now contain a AssetBrowserProtoProfile that type-profiles derive from for consistency in border selection, highlight, (and down the line error) colors and border thickness while maintaining type-sepcific border color entries for general display
64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
singleton GuiControlProfile(AssetBrowserProtoProfile : ToolsGuiDefaultProfile)
|
|
{
|
|
fillcolor = EditorSettings.value("Theme/windowBackgroundColor");
|
|
fillColorHL = EditorSettings.value("Theme/fieldBGHLColor");
|
|
fillColorSEL = EditorSettings.value("Theme/fieldBGSELColor");
|
|
fillColorERR = "128 0 0 255";
|
|
border = true;
|
|
borderColor = "230 126 0 255";
|
|
borderColorHL = "128 128 128 255";
|
|
borderColorSEL = "230 230 230 255";
|
|
borderColorERR = "255 0 0 255";
|
|
borderColorNA = "230 126 0 255";
|
|
borderThickness = 3;
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewImageAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "230 126 0 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewMaterialAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "0 100 0 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewShapeAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "0 0 200 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewShapeAnimationAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "0 0 200 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewSoundAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "75 101 135 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewTerrainAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "200 198 198 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewTerrainMaterialAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "200 198 198 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewStateMachineAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "0 76 135 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewGUIAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "17 5 44 255";
|
|
};
|
|
|
|
singleton GuiControlProfile(AssetBrowserPreviewLevelAsset : AssetBrowserProtoProfile)
|
|
{
|
|
borderColor = "0 208 186 255";
|
|
}; |