diff --git a/Templates/BaseGame/game/core/gui/scripts/profiles.tscript b/Templates/BaseGame/game/core/gui/scripts/profiles.tscript index 150783b46..cae923bd0 100644 --- a/Templates/BaseGame/game/core/gui/scripts/profiles.tscript +++ b/Templates/BaseGame/game/core/gui/scripts/profiles.tscript @@ -57,7 +57,7 @@ new GuiControlProfile (GuiDefaultProfile) borderColorNA = "75 75 75"; // font - fontType = "Arial"; + fontType = "Noto Sans"; fontSize = 14; fontCharset = ANSI; @@ -97,7 +97,7 @@ new GuiControlProfile (GuiToolTipProfile) borderColor = "87 87 87"; // font - fontType = "Arial"; + fontType = "Noto Sans"; fontSize = 14; fontColor = "200 200 200"; @@ -218,7 +218,7 @@ if( !isObject( GuiProgressTextProfile ) ) new GuiControlProfile( GuiProgressTextProfile ) { fontSize = "14"; - fontType = "Arial"; + fontType = "Noto Sans"; fontColor = "0 0 0"; justify = "center"; category = "Core"; diff --git a/Templates/BaseGame/game/tools/VPathEditor/GUI/Profiles.tscript b/Templates/BaseGame/game/tools/VPathEditor/GUI/Profiles.tscript index ae99719c6..1f09a74a9 100644 --- a/Templates/BaseGame/game/tools/VPathEditor/GUI/Profiles.tscript +++ b/Templates/BaseGame/game/tools/VPathEditor/GUI/Profiles.tscript @@ -7,6 +7,6 @@ singleton GuiControlProfile( VPathEditorProfile ) { CanKeyFocus = true; - FontType = "Arial Bold"; + FontType = "Noto Sans Bold"; FontColor = "0 0 0"; }; \ No newline at end of file diff --git a/Templates/BaseGame/game/tools/VerveEditor/GUI/GuiProfiles.tscript b/Templates/BaseGame/game/tools/VerveEditor/GUI/GuiProfiles.tscript index 3d7217100..f3df808ae 100644 --- a/Templates/BaseGame/game/tools/VerveEditor/GUI/GuiProfiles.tscript +++ b/Templates/BaseGame/game/tools/VerveEditor/GUI/GuiProfiles.tscript @@ -15,7 +15,7 @@ singleton GuiControlProfile( VEditorDefaultProfile ) borderColorHL = "100 100 100"; borderColorNA = "240 240 240"; - fontType = "Arial"; + fontType = "Noto Sans"; fontSize = 12; fontCharset = ANSI; @@ -56,7 +56,7 @@ singleton GuiControlProfile( VEditorTextProfile : VEditorDefaultProfile ) border = false; opaque = false; - fontType = "Arial Bold"; + fontType = "Noto Sans Bold"; }; singleton GuiControlProfile( VEditorTextEditProfile : VEditorDefaultProfile ) @@ -186,7 +186,7 @@ singleton GuiControlProfile( VEditorPropertyRolloutProfile : GuiRolloutProfile ) hasBitmapArray = true; bitmapAsset = "ToolsModule:PropertyRollout_image"; - fontType = "Arial"; + fontType = "Noto Sans"; fontSize = 12; fontCharset = ANSI; diff --git a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_d.png b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_d.png index 298764c09..af2143ead 100644 Binary files a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_d.png and b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_d.png differ diff --git a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_h.png b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_h.png index 7d7975f32..31242c88f 100644 Binary files a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_h.png and b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_h.png differ diff --git a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_n.png b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_n.png index 881d92250..8fb0392cc 100644 Binary files a/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_n.png and b/Templates/BaseGame/game/tools/VerveEditor/GUI/Images/btn_Palette_n.png differ diff --git a/Templates/BaseGame/game/tools/editorClasses/gui/images/rollout.png b/Templates/BaseGame/game/tools/editorClasses/gui/images/rollout.png index 39f7caa7e..6e773052a 100644 Binary files a/Templates/BaseGame/game/tools/editorClasses/gui/images/rollout.png and b/Templates/BaseGame/game/tools/editorClasses/gui/images/rollout.png differ diff --git a/Templates/BaseGame/game/tools/gui/images/scrollBar.png b/Templates/BaseGame/game/tools/gui/images/scrollBar.png index fa53497b2..b5d0a95c5 100644 Binary files a/Templates/BaseGame/game/tools/gui/images/scrollBar.png and b/Templates/BaseGame/game/tools/gui/images/scrollBar.png differ diff --git a/Templates/BaseGame/game/tools/gui/images/tab.png b/Templates/BaseGame/game/tools/gui/images/tab.png index b7b7c9871..3b20d826d 100644 Binary files a/Templates/BaseGame/game/tools/gui/images/tab.png and b/Templates/BaseGame/game/tools/gui/images/tab.png differ diff --git a/Templates/BaseGame/game/tools/gui/images/window.png b/Templates/BaseGame/game/tools/gui/images/window.png index d9e9a9d6d..0f71a0a19 100644 Binary files a/Templates/BaseGame/game/tools/gui/images/window.png and b/Templates/BaseGame/game/tools/gui/images/window.png differ diff --git a/Templates/BaseGame/game/tools/gui/profiles.ed.tscript b/Templates/BaseGame/game/tools/gui/profiles.ed.tscript index 428c94014..d7f58cc36 100644 --- a/Templates/BaseGame/game/tools/gui/profiles.ed.tscript +++ b/Templates/BaseGame/game/tools/gui/profiles.ed.tscript @@ -309,8 +309,10 @@ new GuiControlProfile( ToolsGuiTextEditProfile ) fillColorHL = EditorSettings.value("Theme/fieldBGHLColor"); fillColorSEL = EditorSettings.value("Theme/fieldBGSELColor"); + fontColor = EditorSettings.value("Theme/fieldTextColor"); - fontColorSEL = EditorSettings.value("Theme/fieldBGSELColor"); + //fontColorSEL = EditorSettings.value("Theme/fieldBGSELColor"); + fontColorSEL = EditorSettings.value("Theme/dividerMidColor"); fontColorHL = EditorSettings.value("Theme/fieldTextSELColor"); fontColorNA = EditorSettings.value("Theme/fieldTextNAColor"); textOffset = "4 2"; @@ -798,6 +800,7 @@ singleton GuiControlProfile( GuiInspectorTextEditRightProfile : GuiInspectorText category = "Editor"; }; +//Scene Tree GUI Inspector Dropdown menus singleton GuiControlProfile( GuiInspectorGroupProfile ) { fontType = "Noto Sans"; @@ -843,7 +846,7 @@ singleton GuiControlProfile( GuiInspectorFieldProfile) fontColor = EditorSettings.value("Theme/fieldTextColor"); fontColorHL = EditorSettings.value("Theme/fieldTextHLColor"); fontColorNA = EditorSettings.value("Theme/fieldTextSELColor"); - textOffset = "10 0"; + textOffset = "15 0"; tab = true; canKeyFocus = true; @@ -1137,7 +1140,7 @@ singleton GuiControlProfile( ToolsGuiMenuBarProfile ) fontColorSEL = EditorSettings.value("Theme/fieldTextSELColor"); fontColorHL = EditorSettings.value("Theme/fieldTextHLColor"); fontColorNA = EditorSettings.value("Theme/fieldTextNAColor"); - border = 0; + border = 1; borderThickness = 1; opaque = true; mouseOverSelected = true; diff --git a/Templates/BaseGame/game/tools/materialEditor/gui/Profiles.ed.tscript b/Templates/BaseGame/game/tools/materialEditor/gui/Profiles.ed.tscript index f8711a2b0..60d461bf5 100644 --- a/Templates/BaseGame/game/tools/materialEditor/gui/Profiles.ed.tscript +++ b/Templates/BaseGame/game/tools/materialEditor/gui/Profiles.ed.tscript @@ -31,7 +31,7 @@ singleton GuiControlProfile (GuiMatEdSliderProfile) singleton GuiControlProfile (GuiMatEdRightJustifyProfile) { // font - fontType = "Arial"; + fontType = "Noto Sans"; fontSize = 14; fontCharset = ANSI; diff --git a/Templates/BaseGame/game/tools/settings.xml b/Templates/BaseGame/game/tools/settings.xml index 3088c844d..dc0c31602 100644 --- a/Templates/BaseGame/game/tools/settings.xml +++ b/Templates/BaseGame/game/tools/settings.xml @@ -1,4 +1,4 @@ - + @@ -39,7 +39,7 @@ Edit Asset + name="doubleClickAction">Edit Asset 1 17 16 15 255 + name="dividerDarkColor">30 30 30 255 96 94 92 255 + name="dividerLightColor">150 150 150 255 50 49 48 255 + name="dividerMidColor">150 160 190 100 59 58 57 255 + name="fieldBGColor">40 40 40 255 72 70 68 255 + name="fieldBGHLColor">100 110 120 255 100 98 96 255 + name="fieldBGSELColor">150 160 170 255 178 175 172 255 + name="fieldTextColor">185 185 185 255 234 232 230 255 + name="fieldTextHLColor">255 255 255 255 120 120 120 255 + name="fieldTextNAColor">100 100 100 255 255 255 255 255 50 49 48 255 + name="headerColor">40 40 40 255 236 234 232 255 + name="headerTextColor">185 185 185 255 37 36 35 255 + name="tabsColor">40 40 40 255 50 49 48 255 + name="tabsHLColor">180 180 180 255 59 58 57 255 + name="tabsSELColor">100 110 120 255 43 43 43 255 + name="tooltipBGColor">100 110 120 255 + 150 150 150 255 72 70 68 255 255 255 255 255 32 31 30 255 + name="windowBackgroundColor">35 35 35 255 @@ -371,7 +373,7 @@ 1 4.60158 + name="orthoFOV">4.60158014 1