mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
Editor GUI Update PT.2
- Console color scheme + increased font size - Changed bar extend - fixed highlights
This commit is contained in:
parent
0137778641
commit
3d41ac7d79
26 changed files with 121 additions and 246 deletions
|
|
@ -26,7 +26,7 @@ $guiContent = new GuiContainer(EditorGui,EditorGuiGroup) {
|
|||
Profile = "ToolsMenubarProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
Position = "0 10";
|
||||
Extent = "800 32";
|
||||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ $guiContent = new GuiControl() {
|
|||
VertSizing = "windowRelative";
|
||||
Extent = "36 24";
|
||||
MinExtent = "36 24";
|
||||
Position = "-1 63";
|
||||
Position = "-1 73";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
hovertime = "1000";
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ $guiContent = new GuiContainer(EWToolsToolbar) {
|
|||
Profile = "ToolsMenubarProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 31";
|
||||
Position = "0 41";
|
||||
Extent = "0 33";
|
||||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
|
|
@ -15,7 +15,7 @@ $guiContent = new GuiContainer(EWToolsToolbar) {
|
|||
hovertime = "1000";
|
||||
isClosed = "0";
|
||||
isDynamic = "0";
|
||||
|
||||
|
||||
new GuiDynamicCtrlArrayControl(ToolsToolbarArray) {
|
||||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ singleton GuiControlProfile (EditorToolButtonProfile)
|
|||
|
||||
singleton GuiControlProfile (EditorTextProfile)
|
||||
{
|
||||
fontType = "Noto Sans Bold";
|
||||
fontType = "Arial Bold";
|
||||
fontColor = "215 215 215";
|
||||
autoSizeWidth = true;
|
||||
autoSizeHeight = true;
|
||||
|
|
@ -44,7 +44,7 @@ singleton GuiControlProfile (EditorTextProfile)
|
|||
|
||||
singleton GuiControlProfile (EditorTextProfileWhite)
|
||||
{
|
||||
fontType = "Noto Sans Bold";
|
||||
fontType = "Arial Bold";
|
||||
fontColor = "255 255 255";
|
||||
autoSizeWidth = true;
|
||||
autoSizeHeight = true;
|
||||
|
|
|
|||
|
|
@ -423,7 +423,7 @@ function Inspector::onInspectorFieldModified( %this, %object, %fieldName, %array
|
|||
|
||||
function Inspector::onFieldSelected( %this, %fieldName, %fieldTypeStr, %fieldDoc )
|
||||
{
|
||||
FieldInfoControl.setText( "<font:ArialBold:14>" @ %fieldName @ "<font:ArialItalic:14> (" @ %fieldTypeStr @ ") " NL "<font:Arial:14>" @ %fieldDoc );
|
||||
FieldInfoControl.setText( "<font:Arial Bold:14>" @ %fieldName @ "<font:Arial Italic:14> (" @ %fieldTypeStr @ ") " NL "<font:Arial:14>" @ %fieldDoc );
|
||||
}
|
||||
|
||||
// The following three methods are for fields that edit field value live and thus cannot record
|
||||
|
|
|
|||
|
|
@ -113,8 +113,8 @@ function EditorGui::buildMenus(%this)
|
|||
%this.menuBar = new GuiMenuBar(WorldEditorMenubar)
|
||||
{
|
||||
dynamicItemInsertPos = 3;
|
||||
extent = Canvas.extent.x SPC "20";
|
||||
minExtent = "320 20";
|
||||
extent = Canvas.extent.x SPC "30";
|
||||
minExtent = "320 30";
|
||||
horizSizing = "width";
|
||||
profile = "ToolsGuiMenuBarProfile";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue