Editor GUI Update PT.2

- Console color scheme + increased font size
- Changed bar extend
- fixed highlights
This commit is contained in:
vvv-yeaf 2022-09-20 21:59:05 -03:00
parent 0137778641
commit 3d41ac7d79
26 changed files with 121 additions and 246 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";

View file

@ -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;

View file

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

View file

@ -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";
};