From d2ebbdef624d01fa097fe2eef5ed280d300fde87 Mon Sep 17 00:00:00 2001 From: orosmatthew Date: Tue, 18 Jan 2022 12:01:37 -0500 Subject: [PATCH] restructured project --- Main.cs | 2 +- Main.tscn | 10 +- MainMenu.cs => MainMenu/MainMenu.cs | 0 MainMenu.tscn => MainMenu/MainMenu.tscn | 10 +- MainMenu/MenuBackground.cs | 40 ++ .../ParticleNode.cs | 0 .../ParticleNode.tscn | 3 +- .../ParticleSimulationScene.cs | 2 +- .../ParticleSimulationScene.tscn | 3 +- .../{ => Simulation}/Particle.cs | 0 .../{ => Simulation}/ParticleSimulation.cs | 0 .../{ => Simulation}/ParticleType.cs | 0 project.godot | 4 +- .../default_env.tres | 0 ui_theme.tres => resources/ui_theme.tres | 0 thirdparty/FlatUI/UIpack_vector.svg | 553 ------------------ thirdparty/FlatUI/UIpack_vector.svg.import | 35 -- thirdparty/FlatUI/kenneyUI-blue.tres | 327 ----------- thirdparty/FlatUI/kenneyUI-green.tres | 327 ----------- thirdparty/FlatUI/kenneyUI-red.tres | 327 ----------- thirdparty/FlatUI/kenneyUI-yellow.tres | 327 ----------- thirdparty/FlatUI/kenneyUI.tres | 327 ----------- thirdparty/FlatUI/kenvector_future.ttf | Bin 34136 -> 0 bytes icon.png => ui/icon.png | Bin icon.png.import => ui/icon.png.import | 6 +- 25 files changed, 64 insertions(+), 2239 deletions(-) rename MainMenu.cs => MainMenu/MainMenu.cs (100%) rename MainMenu.tscn => MainMenu/MainMenu.tscn (93%) create mode 100644 MainMenu/MenuBackground.cs rename ParticleNode.cs => ParticleSimulation/ParticleNode.cs (100%) rename ParticleNode.tscn => ParticleSimulation/ParticleNode.tscn (85%) rename ParticleSimulationScene.cs => ParticleSimulation/ParticleSimulationScene.cs (98%) rename ParticleSimulationScene.tscn => ParticleSimulation/ParticleSimulationScene.tscn (74%) rename ParticleSimulation/{ => Simulation}/Particle.cs (100%) rename ParticleSimulation/{ => Simulation}/ParticleSimulation.cs (100%) rename ParticleSimulation/{ => Simulation}/ParticleType.cs (100%) rename default_env.tres => resources/default_env.tres (100%) rename ui_theme.tres => resources/ui_theme.tres (100%) delete mode 100644 thirdparty/FlatUI/UIpack_vector.svg delete mode 100644 thirdparty/FlatUI/UIpack_vector.svg.import delete mode 100644 thirdparty/FlatUI/kenneyUI-blue.tres delete mode 100644 thirdparty/FlatUI/kenneyUI-green.tres delete mode 100644 thirdparty/FlatUI/kenneyUI-red.tres delete mode 100644 thirdparty/FlatUI/kenneyUI-yellow.tres delete mode 100644 thirdparty/FlatUI/kenneyUI.tres delete mode 100644 thirdparty/FlatUI/kenvector_future.ttf rename icon.png => ui/icon.png (100%) rename icon.png.import => ui/icon.png.import (74%) diff --git a/Main.cs b/Main.cs index 7835a12..ce2b7c3 100644 --- a/Main.cs +++ b/Main.cs @@ -6,7 +6,7 @@ public class Main : Node public void StartSimulation(int nParticles) { - var particleSimulationPackedScene = GD.Load("res://ParticleSimulationScene.tscn"); + var particleSimulationPackedScene = GD.Load("res://ParticleSimulation/ParticleSimulationScene.tscn"); var particleSimulationScene = particleSimulationPackedScene.Instance(); AddChild(particleSimulationScene); particleSimulationScene.Initialize(nParticles); diff --git a/Main.tscn b/Main.tscn index 75de58a..ba9aac3 100644 --- a/Main.tscn +++ b/Main.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=4 format=2] -[ext_resource path="res://MainMenu.tscn" type="PackedScene" id=1] +[ext_resource path="res://MainMenu/MainMenu.tscn" type="PackedScene" id=1] +[ext_resource path="res://MainMenu/MenuBackground.cs" type="Script" id=2] [sub_resource type="CSharpScript" id=1] resource_name = "Main" @@ -31,3 +32,8 @@ public class Main : Node script = SubResource( 1 ) [node name="MainMenu" parent="." instance=ExtResource( 1 )] + +[node name="MenuBackground" type="Node2D" parent="."] +script = ExtResource( 2 ) + +[node name="ParticleNodes" type="Node2D" parent="MenuBackground"] diff --git a/MainMenu.cs b/MainMenu/MainMenu.cs similarity index 100% rename from MainMenu.cs rename to MainMenu/MainMenu.cs diff --git a/MainMenu.tscn b/MainMenu/MainMenu.tscn similarity index 93% rename from MainMenu.tscn rename to MainMenu/MainMenu.tscn index bc004a8..29764ad 100644 --- a/MainMenu.tscn +++ b/MainMenu/MainMenu.tscn @@ -2,7 +2,7 @@ [ext_resource path="res://ui/ui_theme.tres" type="Theme" id=1] [ext_resource path="res://ui/particles_logo.png" type="Texture" id=2] -[ext_resource path="res://MainMenu.cs" type="Script" id=3] +[ext_resource path="res://MainMenu/MainMenu.cs" type="Script" id=3] [ext_resource path="res://ui/ColorTube-Regular.ttf" type="DynamicFontData" id=4] [sub_resource type="DynamicFont" id=1] @@ -24,9 +24,9 @@ anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 margin_left = -150.0 -margin_top = -19.87 +margin_top = -105.315 margin_right = 150.0 -margin_bottom = 145.13 +margin_bottom = 192.685 custom_constants/separation = 12 __meta__ = { "_edit_use_anchors_": false @@ -84,9 +84,9 @@ anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 margin_left = -342.0 -margin_top = -299.0 +margin_top = -357.183 margin_right = 1578.0 -margin_bottom = 785.0 +margin_bottom = 726.817 rect_scale = Vector2( 0.35, 0.35 ) mouse_filter = 2 texture = ExtResource( 2 ) diff --git a/MainMenu/MenuBackground.cs b/MainMenu/MenuBackground.cs new file mode 100644 index 0000000..a9687af --- /dev/null +++ b/MainMenu/MenuBackground.cs @@ -0,0 +1,40 @@ +using Godot; +using System; + +public class MenuBackground : Node2D +{ + + private Node2D _particleNodes; + + public override void _Ready() + { + //_particleNodes = GetNode("ParticlesNodes"); + //var particleScene = GD.Load("res://ParticleSimulation/ParticleNode.tscn"); + //var particleNode = particleScene.Instance(); + //_particleNodes.AddChild(particleNode); + } + + public void SetParticleCount(int nParticles) + { + int currentCount = _particleNodes.GetChildCount(); + if (currentCount < nParticles) + { + int addCount = nParticles - currentCount; + for (int i = 0; i < addCount; i++) + { + + } + } + } + + //TODO add private method to add particles + + public override void _Process(float delta) + { + //var particleNodesArray = _particleNodes.GetChildren(); + //foreach (ParticleNode particle in particleNodesArray) + //{ + // particle.Position += new Vector2(0.1f, 0f); + //} + } +} diff --git a/ParticleNode.cs b/ParticleSimulation/ParticleNode.cs similarity index 100% rename from ParticleNode.cs rename to ParticleSimulation/ParticleNode.cs diff --git a/ParticleNode.tscn b/ParticleSimulation/ParticleNode.tscn similarity index 85% rename from ParticleNode.tscn rename to ParticleSimulation/ParticleNode.tscn index 2bd8f95..4f37f7e 100644 --- a/ParticleNode.tscn +++ b/ParticleSimulation/ParticleNode.tscn @@ -1,8 +1,9 @@ [gd_scene load_steps=3 format=2] -[ext_resource path="res://ParticleNode.cs" type="Script" id=1] +[ext_resource path="res://ParticleSimulation/ParticleNode.cs" type="Script" id=1] [ext_resource path="res://textures/particle_noborder.png" type="Texture" id=2] + [node name="ParticleNode" type="Node2D"] script = ExtResource( 1 ) diff --git a/ParticleSimulationScene.cs b/ParticleSimulation/ParticleSimulationScene.cs similarity index 98% rename from ParticleSimulationScene.cs rename to ParticleSimulation/ParticleSimulationScene.cs index ae9ce6e..b53ffb7 100644 --- a/ParticleSimulationScene.cs +++ b/ParticleSimulation/ParticleSimulationScene.cs @@ -60,7 +60,7 @@ public class ParticleSimulationScene : Node2D private void CreateParticleNode(int id) { - var particleScene = GD.Load("res://ParticleNode.tscn"); + var particleScene = GD.Load("res://ParticleSimulation/ParticleNode.tscn"); var particleNode = particleScene.Instance(); particleNode.Name = id.ToString(); particleNode.SimulationId = id; diff --git a/ParticleSimulationScene.tscn b/ParticleSimulation/ParticleSimulationScene.tscn similarity index 74% rename from ParticleSimulationScene.tscn rename to ParticleSimulation/ParticleSimulationScene.tscn index 4135c30..348b4b0 100644 --- a/ParticleSimulationScene.tscn +++ b/ParticleSimulation/ParticleSimulationScene.tscn @@ -1,6 +1,7 @@ [gd_scene load_steps=2 format=2] -[ext_resource path="res://ParticleSimulationScene.cs" type="Script" id=1] +[ext_resource path="res://ParticleSimulation/ParticleSimulationScene.cs" type="Script" id=1] + [node name="ParticleSimulationScene" type="Node2D"] script = ExtResource( 1 ) diff --git a/ParticleSimulation/Particle.cs b/ParticleSimulation/Simulation/Particle.cs similarity index 100% rename from ParticleSimulation/Particle.cs rename to ParticleSimulation/Simulation/Particle.cs diff --git a/ParticleSimulation/ParticleSimulation.cs b/ParticleSimulation/Simulation/ParticleSimulation.cs similarity index 100% rename from ParticleSimulation/ParticleSimulation.cs rename to ParticleSimulation/Simulation/ParticleSimulation.cs diff --git a/ParticleSimulation/ParticleType.cs b/ParticleSimulation/Simulation/ParticleType.cs similarity index 100% rename from ParticleSimulation/ParticleType.cs rename to ParticleSimulation/Simulation/ParticleType.cs diff --git a/project.godot b/project.godot index 473b06f..eaf95b8 100644 --- a/project.godot +++ b/project.godot @@ -14,7 +14,7 @@ config/name="Particles" run/main_scene="res://Main.tscn" boot_splash/image="res://textures/particles_logo_square.png" boot_splash/bg_color=Color( 0, 0, 0, 1 ) -config/icon="res://icon.png" +config/icon="res://ui/icon.png" config/windows_native_icon="res://icon.ico" [input] @@ -45,4 +45,4 @@ quality/driver/driver_name="GLES2" vram_compression/import_etc=true vram_compression/import_etc2=false environment/default_clear_color=Color( 0, 0, 0, 1 ) -environment/default_environment="res://default_env.tres" +environment/default_environment="res://resources/default_env.tres" diff --git a/default_env.tres b/resources/default_env.tres similarity index 100% rename from default_env.tres rename to resources/default_env.tres diff --git a/ui_theme.tres b/resources/ui_theme.tres similarity index 100% rename from ui_theme.tres rename to resources/ui_theme.tres diff --git a/thirdparty/FlatUI/UIpack_vector.svg b/thirdparty/FlatUI/UIpack_vector.svg deleted file mode 100644 index 6a89dc1..0000000 --- a/thirdparty/FlatUI/UIpack_vector.svg +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/thirdparty/FlatUI/UIpack_vector.svg.import b/thirdparty/FlatUI/UIpack_vector.svg.import deleted file mode 100644 index 045164d..0000000 --- a/thirdparty/FlatUI/UIpack_vector.svg.import +++ /dev/null @@ -1,35 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/UIpack_vector.svg-6072a9fd540bc63a091416d2685f9ed6.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://thirdparty/FlatUI/UIpack_vector.svg" -dest_files=[ "res://.import/UIpack_vector.svg-6072a9fd540bc63a091416d2685f9ed6.stex" ] - -[params] - -compress/mode=0 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 diff --git a/thirdparty/FlatUI/kenneyUI-blue.tres b/thirdparty/FlatUI/kenneyUI-blue.tres deleted file mode 100644 index 0fb5e29..0000000 --- a/thirdparty/FlatUI/kenneyUI-blue.tres +++ /dev/null @@ -1,327 +0,0 @@ -[gd_resource type="Theme" load_steps=34 format=2] - -[ext_resource path="UIpack_vector.svg" type="Texture" id=1] -[ext_resource path="kenvector_future.ttf" type="DynamicFontData" id=2] - -[sub_resource type="StyleBoxTexture" id=1] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 240, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxEmpty" id=2] - -[sub_resource type="StyleBoxTexture" id=3] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 240, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=4] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 240, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=5] -texture = ExtResource( 1 ) -region_rect = Rect2( 421, 244, 190, 45 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 200, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 201, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxEmpty" id=10] - -[sub_resource type="StyleBoxEmpty" id=11] - -[sub_resource type="StyleBoxEmpty" id=12] - -[sub_resource type="StyleBoxEmpty" id=13] - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 200, 644, 36, 36 ) - -[sub_resource type="AtlasTexture" id=15] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 200, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=16] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 872, 684, 28, 42 ) - -[sub_resource type="StyleBoxTexture" id=17] -texture = ExtResource( 1 ) -region_rect = Rect2( 840, 316, 192, 6 ) - -[sub_resource type="StyleBoxEmpty" id=18] - -[sub_resource type="StyleBoxTexture" id=19] -texture = ExtResource( 1 ) -region_rect = Rect2( 629, 317, 194, 49 ) -margin_left = 17.1475 -margin_right = 13.718 -margin_top = 12.0032 -margin_bottom = 9.43112 - -[sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 812, 458, 28, 10 ) - -[sub_resource type="StyleBoxTexture" id=21] -texture = ExtResource( 1 ) -region_rect = Rect2( 485, 310, 100, 100 ) -margin_left = 12.3202 -margin_right = 13.3469 -margin_top = 13.3469 -margin_bottom = 11.2935 - -[sub_resource type="AtlasTexture" id=22] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 200, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=23] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 201, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=25] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxTexture" id=26] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 4.0 -content_margin_bottom = 4.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 240, 190, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 - -[sub_resource type="StyleBoxTexture" id=27] -content_margin_left = 10.0 -content_margin_right = 10.0 -content_margin_top = 10.0 -content_margin_bottom = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 485, 310, 100, 100 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 -expand_margin_top = 10.0 -expand_margin_bottom = 10.0 - -[sub_resource type="StyleBoxTexture" id=28] -content_margin_left = 12.0 -content_margin_top = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 10.8072 -margin_right = 9.71325 -margin_top = 28.4299 -margin_bottom = 14.7561 -axis_stretch_vertical = 1 - -[sub_resource type="AtlasTexture" id=29] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1007, 690, 39, 31 ) - -[sub_resource type="StyleBoxTexture" id=30] -texture = ExtResource( 1 ) -region_rect = Rect2( 1051, 317, 4, 100 ) - -[sub_resource type="DynamicFont" id=31] -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[resource] -default_font = SubResource( 31 ) -Button/colors/font_color = Color( 0, 0, 0, 1 ) -Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -Button/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -Button/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -Button/constants/hseparation = 2 -Button/fonts/font = null -Button/styles/disabled = SubResource( 1 ) -Button/styles/focus = SubResource( 2 ) -Button/styles/hover = SubResource( 3 ) -Button/styles/normal = SubResource( 4 ) -Button/styles/pressed = SubResource( 5 ) -CheckBox/colors/font_color = Color( 0, 0, 0, 1 ) -CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckBox/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_hover_pressed = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckBox/constants/check_vadjust = 0 -CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = null -CheckBox/icons/checked = SubResource( 6 ) -CheckBox/icons/radio_checked = SubResource( 7 ) -CheckBox/icons/radio_unchecked = SubResource( 8 ) -CheckBox/icons/unchecked = SubResource( 9 ) -CheckBox/styles/disabled = null -CheckBox/styles/focus = null -CheckBox/styles/hover = SubResource( 10 ) -CheckBox/styles/hover_pressed = SubResource( 11 ) -CheckBox/styles/normal = SubResource( 12 ) -CheckBox/styles/pressed = SubResource( 13 ) -CheckButton/colors/font_color = Color( 0, 0, 0, 1 ) -CheckButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckButton/colors/font_color_hover_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/constants/check_vadjust = 0 -CheckButton/constants/hseparation = 4 -CheckButton/fonts/font = null -CheckButton/icons/off = SubResource( 14 ) -CheckButton/icons/off_disabled = SubResource( 14 ) -CheckButton/icons/on = SubResource( 15 ) -CheckButton/icons/on_disabled = SubResource( 15 ) -CheckButton/styles/disabled = null -CheckButton/styles/focus = null -CheckButton/styles/hover = null -CheckButton/styles/hover_pressed = null -CheckButton/styles/normal = null -CheckButton/styles/pressed = null -HSlider/icons/grabber = SubResource( 16 ) -HSlider/icons/grabber_disabled = null -HSlider/icons/grabber_highlight = SubResource( 16 ) -HSlider/icons/tick = null -HSlider/styles/grabber_area = SubResource( 17 ) -HSlider/styles/grabber_area_highlight = SubResource( 17 ) -HSlider/styles/slider = SubResource( 17 ) -LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) -LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) -LineEdit/colors/cursor_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/colors/font_color = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_selected = Color( 0.894118, 0.894118, 0.894118, 1 ) -LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) -LineEdit/colors/selection_color = Color( 0.117647, 0.654902, 0.882353, 1 ) -LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = null -LineEdit/icons/clear = null -LineEdit/styles/focus = SubResource( 18 ) -LineEdit/styles/normal = SubResource( 19 ) -LineEdit/styles/read_only = SubResource( 19 ) -OptionButton/colors/font_color = Color( 0, 0, 0, 1 ) -OptionButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -OptionButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -OptionButton/colors/font_color_pressed = Color( 0, 0, 0, 1 ) -OptionButton/constants/arrow_margin = 2 -OptionButton/constants/hseparation = 2 -OptionButton/fonts/font = null -OptionButton/icons/arrow = SubResource( 20 ) -OptionButton/styles/disabled = null -OptionButton/styles/focus = null -OptionButton/styles/hover = null -OptionButton/styles/normal = null -OptionButton/styles/pressed = null -Panel/styles/panel = SubResource( 21 ) -PopupMenu/colors/font_color = Color( 0, 0, 0, 1 ) -PopupMenu/colors/font_color_accel = Color( 0.701961, 0.701961, 0.701961, 0.8 ) -PopupMenu/colors/font_color_disabled = Color( 0.4, 0.4, 0.4, 0.8 ) -PopupMenu/colors/font_color_hover = Color( 0.388235, 0.388235, 0.388235, 1 ) -PopupMenu/constants/hseparation = 4 -PopupMenu/constants/vseparation = 32 -PopupMenu/fonts/font = null -PopupMenu/icons/checked = SubResource( 22 ) -PopupMenu/icons/radio_checked = SubResource( 23 ) -PopupMenu/icons/radio_unchecked = SubResource( 24 ) -PopupMenu/icons/submenu = null -PopupMenu/icons/unchecked = SubResource( 25 ) -PopupMenu/styles/hover = SubResource( 26 ) -PopupMenu/styles/labeled_separator_left = null -PopupMenu/styles/labeled_separator_right = null -PopupMenu/styles/panel = SubResource( 27 ) -PopupMenu/styles/panel_disabled = null -PopupMenu/styles/separator = null -TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) -TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) -TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) -TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) -TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) -TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) -TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) -TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) -TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) -TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) -TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) -TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) -TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) -TextEdit/colors/font_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) -TextEdit/colors/font_color_selected = Color( 0.34902, 0.34902, 0.34902, 1 ) -TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) -TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) -TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) -TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) -TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) -TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) -TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) -TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) -TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) -TextEdit/constants/completion_lines = 7 -TextEdit/constants/completion_max_width = 50 -TextEdit/constants/completion_scroll_width = 3 -TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = null -TextEdit/icons/fold = null -TextEdit/icons/folded = null -TextEdit/icons/space = null -TextEdit/icons/tab = null -TextEdit/styles/completion = null -TextEdit/styles/focus = null -TextEdit/styles/normal = SubResource( 28 ) -TextEdit/styles/read_only = null -VSlider/icons/grabber = SubResource( 29 ) -VSlider/icons/grabber_disabled = SubResource( 29 ) -VSlider/icons/grabber_highlight = SubResource( 29 ) -VSlider/icons/tick = null -VSlider/styles/grabber_area = SubResource( 30 ) -VSlider/styles/grabber_area_highlight = SubResource( 30 ) -VSlider/styles/slider = SubResource( 30 ) diff --git a/thirdparty/FlatUI/kenneyUI-green.tres b/thirdparty/FlatUI/kenneyUI-green.tres deleted file mode 100644 index 46bd692..0000000 --- a/thirdparty/FlatUI/kenneyUI-green.tres +++ /dev/null @@ -1,327 +0,0 @@ -[gd_resource type="Theme" load_steps=34 format=2] - -[ext_resource path="UIpack_vector.svg" type="Texture" id=1] -[ext_resource path="kenvector_future.ttf" type="DynamicFontData" id=2] - -[sub_resource type="StyleBoxTexture" id=1] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 120, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxEmpty" id=2] - -[sub_resource type="StyleBoxTexture" id=3] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 120, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=4] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 120, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=5] -texture = ExtResource( 1 ) -region_rect = Rect2( 421, 124, 190, 45 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 100, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 101, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxEmpty" id=10] - -[sub_resource type="StyleBoxEmpty" id=11] - -[sub_resource type="StyleBoxEmpty" id=12] - -[sub_resource type="StyleBoxEmpty" id=13] - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 100, 644, 36, 36 ) - -[sub_resource type="AtlasTexture" id=15] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 100, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=16] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 872, 564, 28, 42 ) - -[sub_resource type="StyleBoxTexture" id=17] -texture = ExtResource( 1 ) -region_rect = Rect2( 840, 316, 192, 6 ) - -[sub_resource type="StyleBoxEmpty" id=18] - -[sub_resource type="StyleBoxTexture" id=19] -texture = ExtResource( 1 ) -region_rect = Rect2( 629, 317, 194, 49 ) -margin_left = 17.1475 -margin_right = 13.718 -margin_top = 12.0032 -margin_bottom = 9.43112 - -[sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 816, 578, 20, 10 ) - -[sub_resource type="StyleBoxTexture" id=21] -texture = ExtResource( 1 ) -region_rect = Rect2( 243, 310, 100, 100 ) -margin_left = 12.3202 -margin_right = 13.3469 -margin_top = 13.3469 -margin_bottom = 11.2935 - -[sub_resource type="AtlasTexture" id=22] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 100, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=23] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 101, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=25] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxTexture" id=26] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 4.0 -content_margin_bottom = 4.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 120, 190, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 - -[sub_resource type="StyleBoxTexture" id=27] -content_margin_left = 10.0 -content_margin_right = 10.0 -content_margin_top = 10.0 -content_margin_bottom = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 243, 310, 100, 100 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 -expand_margin_top = 10.0 -expand_margin_bottom = 10.0 - -[sub_resource type="StyleBoxTexture" id=28] -content_margin_left = 12.0 -content_margin_top = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 10.8072 -margin_right = 9.71325 -margin_top = 28.4299 -margin_bottom = 14.7561 -axis_stretch_vertical = 1 - -[sub_resource type="AtlasTexture" id=29] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1007, 570, 39, 31 ) - -[sub_resource type="StyleBoxTexture" id=30] -texture = ExtResource( 1 ) -region_rect = Rect2( 1051, 317, 4, 100 ) - -[sub_resource type="DynamicFont" id=31] -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[resource] -default_font = SubResource( 31 ) -Button/colors/font_color = Color( 0, 0, 0, 1 ) -Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -Button/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -Button/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -Button/constants/hseparation = 2 -Button/fonts/font = null -Button/styles/disabled = SubResource( 1 ) -Button/styles/focus = SubResource( 2 ) -Button/styles/hover = SubResource( 3 ) -Button/styles/normal = SubResource( 4 ) -Button/styles/pressed = SubResource( 5 ) -CheckBox/colors/font_color = Color( 0, 0, 0, 1 ) -CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckBox/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_hover_pressed = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckBox/constants/check_vadjust = 0 -CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = null -CheckBox/icons/checked = SubResource( 6 ) -CheckBox/icons/radio_checked = SubResource( 7 ) -CheckBox/icons/radio_unchecked = SubResource( 8 ) -CheckBox/icons/unchecked = SubResource( 9 ) -CheckBox/styles/disabled = null -CheckBox/styles/focus = null -CheckBox/styles/hover = SubResource( 10 ) -CheckBox/styles/hover_pressed = SubResource( 11 ) -CheckBox/styles/normal = SubResource( 12 ) -CheckBox/styles/pressed = SubResource( 13 ) -CheckButton/colors/font_color = Color( 0, 0, 0, 1 ) -CheckButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckButton/colors/font_color_hover_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/constants/check_vadjust = 0 -CheckButton/constants/hseparation = 4 -CheckButton/fonts/font = null -CheckButton/icons/off = SubResource( 14 ) -CheckButton/icons/off_disabled = SubResource( 14 ) -CheckButton/icons/on = SubResource( 15 ) -CheckButton/icons/on_disabled = SubResource( 15 ) -CheckButton/styles/disabled = null -CheckButton/styles/focus = null -CheckButton/styles/hover = null -CheckButton/styles/hover_pressed = null -CheckButton/styles/normal = null -CheckButton/styles/pressed = null -HSlider/icons/grabber = SubResource( 16 ) -HSlider/icons/grabber_disabled = null -HSlider/icons/grabber_highlight = SubResource( 16 ) -HSlider/icons/tick = null -HSlider/styles/grabber_area = SubResource( 17 ) -HSlider/styles/grabber_area_highlight = SubResource( 17 ) -HSlider/styles/slider = SubResource( 17 ) -LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) -LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) -LineEdit/colors/cursor_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/colors/font_color = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_selected = Color( 0.894118, 0.894118, 0.894118, 1 ) -LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) -LineEdit/colors/selection_color = Color( 0.45098, 0.803922, 0.294118, 1 ) -LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = null -LineEdit/icons/clear = null -LineEdit/styles/focus = SubResource( 18 ) -LineEdit/styles/normal = SubResource( 19 ) -LineEdit/styles/read_only = SubResource( 19 ) -OptionButton/colors/font_color = Color( 0, 0, 0, 1 ) -OptionButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -OptionButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -OptionButton/colors/font_color_pressed = Color( 0, 0, 0, 1 ) -OptionButton/constants/arrow_margin = 2 -OptionButton/constants/hseparation = 2 -OptionButton/fonts/font = null -OptionButton/icons/arrow = SubResource( 20 ) -OptionButton/styles/disabled = null -OptionButton/styles/focus = null -OptionButton/styles/hover = null -OptionButton/styles/normal = null -OptionButton/styles/pressed = null -Panel/styles/panel = SubResource( 21 ) -PopupMenu/colors/font_color = Color( 0, 0, 0, 1 ) -PopupMenu/colors/font_color_accel = Color( 0.701961, 0.701961, 0.701961, 0.8 ) -PopupMenu/colors/font_color_disabled = Color( 0.4, 0.4, 0.4, 0.8 ) -PopupMenu/colors/font_color_hover = Color( 0.388235, 0.388235, 0.388235, 1 ) -PopupMenu/constants/hseparation = 4 -PopupMenu/constants/vseparation = 32 -PopupMenu/fonts/font = null -PopupMenu/icons/checked = SubResource( 22 ) -PopupMenu/icons/radio_checked = SubResource( 23 ) -PopupMenu/icons/radio_unchecked = SubResource( 24 ) -PopupMenu/icons/submenu = null -PopupMenu/icons/unchecked = SubResource( 25 ) -PopupMenu/styles/hover = SubResource( 26 ) -PopupMenu/styles/labeled_separator_left = null -PopupMenu/styles/labeled_separator_right = null -PopupMenu/styles/panel = SubResource( 27 ) -PopupMenu/styles/panel_disabled = null -PopupMenu/styles/separator = null -TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) -TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) -TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) -TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) -TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) -TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) -TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) -TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) -TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) -TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) -TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) -TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) -TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) -TextEdit/colors/font_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) -TextEdit/colors/font_color_selected = Color( 0.34902, 0.34902, 0.34902, 1 ) -TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) -TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) -TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) -TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) -TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) -TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) -TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) -TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) -TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) -TextEdit/constants/completion_lines = 7 -TextEdit/constants/completion_max_width = 50 -TextEdit/constants/completion_scroll_width = 3 -TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = null -TextEdit/icons/fold = null -TextEdit/icons/folded = null -TextEdit/icons/space = null -TextEdit/icons/tab = null -TextEdit/styles/completion = null -TextEdit/styles/focus = null -TextEdit/styles/normal = SubResource( 28 ) -TextEdit/styles/read_only = null -VSlider/icons/grabber = SubResource( 29 ) -VSlider/icons/grabber_disabled = SubResource( 29 ) -VSlider/icons/grabber_highlight = SubResource( 29 ) -VSlider/icons/tick = null -VSlider/styles/grabber_area = SubResource( 30 ) -VSlider/styles/grabber_area_highlight = SubResource( 30 ) -VSlider/styles/slider = SubResource( 30 ) diff --git a/thirdparty/FlatUI/kenneyUI-red.tres b/thirdparty/FlatUI/kenneyUI-red.tres deleted file mode 100644 index 3e1abde..0000000 --- a/thirdparty/FlatUI/kenneyUI-red.tres +++ /dev/null @@ -1,327 +0,0 @@ -[gd_resource type="Theme" load_steps=34 format=2] - -[ext_resource path="UIpack_vector.svg" type="Texture" id=1] -[ext_resource path="kenvector_future.ttf" type="DynamicFontData" id=2] - -[sub_resource type="StyleBoxTexture" id=1] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 180, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxEmpty" id=2] - -[sub_resource type="StyleBoxTexture" id=3] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 180, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=4] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 180, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=5] -texture = ExtResource( 1 ) -region_rect = Rect2( 421, 184, 190, 45 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 150, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 151, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxEmpty" id=10] - -[sub_resource type="StyleBoxEmpty" id=11] - -[sub_resource type="StyleBoxEmpty" id=12] - -[sub_resource type="StyleBoxEmpty" id=13] - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 150, 644, 36, 36 ) - -[sub_resource type="AtlasTexture" id=15] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 150, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=16] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 872, 624, 28, 42 ) - -[sub_resource type="StyleBoxTexture" id=17] -texture = ExtResource( 1 ) -region_rect = Rect2( 840, 316, 192, 6 ) - -[sub_resource type="StyleBoxEmpty" id=18] - -[sub_resource type="StyleBoxTexture" id=19] -texture = ExtResource( 1 ) -region_rect = Rect2( 629, 317, 194, 49 ) -margin_left = 17.1475 -margin_right = 13.718 -margin_top = 12.0032 -margin_bottom = 9.43112 - -[sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 814, 578, 24, 10 ) - -[sub_resource type="StyleBoxTexture" id=21] -texture = ExtResource( 1 ) -region_rect = Rect2( 364, 310, 100, 100 ) -margin_left = 12.3202 -margin_right = 13.3469 -margin_top = 13.3469 -margin_bottom = 11.2935 - -[sub_resource type="AtlasTexture" id=22] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 150, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=23] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 151, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=25] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxTexture" id=26] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 4.0 -content_margin_bottom = 4.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 180, 190, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 - -[sub_resource type="StyleBoxTexture" id=27] -content_margin_left = 10.0 -content_margin_right = 10.0 -content_margin_top = 10.0 -content_margin_bottom = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 364, 310, 100, 100 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 -expand_margin_top = 10.0 -expand_margin_bottom = 10.0 - -[sub_resource type="StyleBoxTexture" id=28] -content_margin_left = 12.0 -content_margin_top = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 10.8072 -margin_right = 9.71325 -margin_top = 28.4299 -margin_bottom = 14.7561 -axis_stretch_vertical = 1 - -[sub_resource type="AtlasTexture" id=29] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1007, 630, 39, 31 ) - -[sub_resource type="StyleBoxTexture" id=30] -texture = ExtResource( 1 ) -region_rect = Rect2( 1051, 317, 4, 100 ) - -[sub_resource type="DynamicFont" id=31] -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[resource] -default_font = SubResource( 31 ) -Button/colors/font_color = Color( 0, 0, 0, 1 ) -Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -Button/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -Button/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -Button/constants/hseparation = 2 -Button/fonts/font = null -Button/styles/disabled = SubResource( 1 ) -Button/styles/focus = SubResource( 2 ) -Button/styles/hover = SubResource( 3 ) -Button/styles/normal = SubResource( 4 ) -Button/styles/pressed = SubResource( 5 ) -CheckBox/colors/font_color = Color( 0, 0, 0, 1 ) -CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckBox/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_hover_pressed = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckBox/constants/check_vadjust = 0 -CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = null -CheckBox/icons/checked = SubResource( 6 ) -CheckBox/icons/radio_checked = SubResource( 7 ) -CheckBox/icons/radio_unchecked = SubResource( 8 ) -CheckBox/icons/unchecked = SubResource( 9 ) -CheckBox/styles/disabled = null -CheckBox/styles/focus = null -CheckBox/styles/hover = SubResource( 10 ) -CheckBox/styles/hover_pressed = SubResource( 11 ) -CheckBox/styles/normal = SubResource( 12 ) -CheckBox/styles/pressed = SubResource( 13 ) -CheckButton/colors/font_color = Color( 0, 0, 0, 1 ) -CheckButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckButton/colors/font_color_hover_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/constants/check_vadjust = 0 -CheckButton/constants/hseparation = 4 -CheckButton/fonts/font = null -CheckButton/icons/off = SubResource( 14 ) -CheckButton/icons/off_disabled = SubResource( 14 ) -CheckButton/icons/on = SubResource( 15 ) -CheckButton/icons/on_disabled = SubResource( 15 ) -CheckButton/styles/disabled = null -CheckButton/styles/focus = null -CheckButton/styles/hover = null -CheckButton/styles/hover_pressed = null -CheckButton/styles/normal = null -CheckButton/styles/pressed = null -HSlider/icons/grabber = SubResource( 16 ) -HSlider/icons/grabber_disabled = null -HSlider/icons/grabber_highlight = SubResource( 16 ) -HSlider/icons/tick = null -HSlider/styles/grabber_area = SubResource( 17 ) -HSlider/styles/grabber_area_highlight = SubResource( 17 ) -HSlider/styles/slider = SubResource( 17 ) -LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) -LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) -LineEdit/colors/cursor_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/colors/font_color = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_selected = Color( 0.894118, 0.894118, 0.894118, 1 ) -LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) -LineEdit/colors/selection_color = Color( 0.909804, 0.415686, 0.0901961, 1 ) -LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = null -LineEdit/icons/clear = null -LineEdit/styles/focus = SubResource( 18 ) -LineEdit/styles/normal = SubResource( 19 ) -LineEdit/styles/read_only = SubResource( 19 ) -OptionButton/colors/font_color = Color( 0, 0, 0, 1 ) -OptionButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -OptionButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -OptionButton/colors/font_color_pressed = Color( 0, 0, 0, 1 ) -OptionButton/constants/arrow_margin = 2 -OptionButton/constants/hseparation = 2 -OptionButton/fonts/font = null -OptionButton/icons/arrow = SubResource( 20 ) -OptionButton/styles/disabled = null -OptionButton/styles/focus = null -OptionButton/styles/hover = null -OptionButton/styles/normal = null -OptionButton/styles/pressed = null -Panel/styles/panel = SubResource( 21 ) -PopupMenu/colors/font_color = Color( 0, 0, 0, 1 ) -PopupMenu/colors/font_color_accel = Color( 0.701961, 0.701961, 0.701961, 0.8 ) -PopupMenu/colors/font_color_disabled = Color( 0.4, 0.4, 0.4, 0.8 ) -PopupMenu/colors/font_color_hover = Color( 0.388235, 0.388235, 0.388235, 1 ) -PopupMenu/constants/hseparation = 4 -PopupMenu/constants/vseparation = 32 -PopupMenu/fonts/font = null -PopupMenu/icons/checked = SubResource( 22 ) -PopupMenu/icons/radio_checked = SubResource( 23 ) -PopupMenu/icons/radio_unchecked = SubResource( 24 ) -PopupMenu/icons/submenu = null -PopupMenu/icons/unchecked = SubResource( 25 ) -PopupMenu/styles/hover = SubResource( 26 ) -PopupMenu/styles/labeled_separator_left = null -PopupMenu/styles/labeled_separator_right = null -PopupMenu/styles/panel = SubResource( 27 ) -PopupMenu/styles/panel_disabled = null -PopupMenu/styles/separator = null -TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) -TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) -TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) -TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) -TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) -TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) -TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) -TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) -TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) -TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) -TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) -TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) -TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) -TextEdit/colors/font_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) -TextEdit/colors/font_color_selected = Color( 0.34902, 0.34902, 0.34902, 1 ) -TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) -TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) -TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) -TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) -TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) -TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) -TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) -TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) -TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) -TextEdit/constants/completion_lines = 7 -TextEdit/constants/completion_max_width = 50 -TextEdit/constants/completion_scroll_width = 3 -TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = null -TextEdit/icons/fold = null -TextEdit/icons/folded = null -TextEdit/icons/space = null -TextEdit/icons/tab = null -TextEdit/styles/completion = null -TextEdit/styles/focus = null -TextEdit/styles/normal = SubResource( 28 ) -TextEdit/styles/read_only = null -VSlider/icons/grabber = SubResource( 29 ) -VSlider/icons/grabber_disabled = SubResource( 29 ) -VSlider/icons/grabber_highlight = SubResource( 29 ) -VSlider/icons/tick = null -VSlider/styles/grabber_area = SubResource( 30 ) -VSlider/styles/grabber_area_highlight = SubResource( 30 ) -VSlider/styles/slider = SubResource( 30 ) diff --git a/thirdparty/FlatUI/kenneyUI-yellow.tres b/thirdparty/FlatUI/kenneyUI-yellow.tres deleted file mode 100644 index 5bfc56d..0000000 --- a/thirdparty/FlatUI/kenneyUI-yellow.tres +++ /dev/null @@ -1,327 +0,0 @@ -[gd_resource type="Theme" load_steps=34 format=2] - -[ext_resource path="UIpack_vector.svg" type="Texture" id=1] -[ext_resource path="kenvector_future.ttf" type="DynamicFontData" id=2] - -[sub_resource type="StyleBoxTexture" id=1] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 60, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxEmpty" id=2] - -[sub_resource type="StyleBoxTexture" id=3] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 60, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=4] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 60, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=5] -texture = ExtResource( 1 ) -region_rect = Rect2( 421, 64, 190, 45 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 50, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 51, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxEmpty" id=10] - -[sub_resource type="StyleBoxEmpty" id=11] - -[sub_resource type="StyleBoxEmpty" id=12] - -[sub_resource type="StyleBoxEmpty" id=13] - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 50, 644, 36, 36 ) - -[sub_resource type="AtlasTexture" id=15] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 50, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=16] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 872, 504, 28, 42 ) - -[sub_resource type="StyleBoxTexture" id=17] -texture = ExtResource( 1 ) -region_rect = Rect2( 840, 316, 192, 6 ) - -[sub_resource type="StyleBoxEmpty" id=18] - -[sub_resource type="StyleBoxTexture" id=19] -texture = ExtResource( 1 ) -region_rect = Rect2( 629, 317, 194, 49 ) -margin_left = 17.1475 -margin_right = 13.718 -margin_top = 12.0032 -margin_bottom = 9.43112 - -[sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 812, 458, 28, 10 ) - -[sub_resource type="StyleBoxTexture" id=21] -texture = ExtResource( 1 ) -region_rect = Rect2( 122, 310, 100, 100 ) -margin_left = 12.3202 -margin_right = 13.3469 -margin_top = 13.3469 -margin_bottom = 11.2935 - -[sub_resource type="AtlasTexture" id=22] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 50, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=23] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 51, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=25] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxTexture" id=26] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 4.0 -content_margin_bottom = 4.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 60, 190, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 - -[sub_resource type="StyleBoxTexture" id=27] -content_margin_left = 10.0 -content_margin_right = 10.0 -content_margin_top = 10.0 -content_margin_bottom = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 122, 310, 100, 100 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 -expand_margin_top = 10.0 -expand_margin_bottom = 10.0 - -[sub_resource type="StyleBoxTexture" id=28] -content_margin_left = 12.0 -content_margin_top = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 10.8072 -margin_right = 9.71325 -margin_top = 28.4299 -margin_bottom = 14.7561 -axis_stretch_vertical = 1 - -[sub_resource type="AtlasTexture" id=29] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1007, 510, 39, 31 ) - -[sub_resource type="StyleBoxTexture" id=30] -texture = ExtResource( 1 ) -region_rect = Rect2( 1051, 317, 4, 100 ) - -[sub_resource type="DynamicFont" id=31] -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[resource] -default_font = SubResource( 31 ) -Button/colors/font_color = Color( 0, 0, 0, 1 ) -Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -Button/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -Button/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -Button/constants/hseparation = 2 -Button/fonts/font = null -Button/styles/disabled = SubResource( 1 ) -Button/styles/focus = SubResource( 2 ) -Button/styles/hover = SubResource( 3 ) -Button/styles/normal = SubResource( 4 ) -Button/styles/pressed = SubResource( 5 ) -CheckBox/colors/font_color = Color( 0, 0, 0, 1 ) -CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckBox/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_hover_pressed = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckBox/constants/check_vadjust = 0 -CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = null -CheckBox/icons/checked = SubResource( 6 ) -CheckBox/icons/radio_checked = SubResource( 7 ) -CheckBox/icons/radio_unchecked = SubResource( 8 ) -CheckBox/icons/unchecked = SubResource( 9 ) -CheckBox/styles/disabled = null -CheckBox/styles/focus = null -CheckBox/styles/hover = SubResource( 10 ) -CheckBox/styles/hover_pressed = SubResource( 11 ) -CheckBox/styles/normal = SubResource( 12 ) -CheckBox/styles/pressed = SubResource( 13 ) -CheckButton/colors/font_color = Color( 0, 0, 0, 1 ) -CheckButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckButton/colors/font_color_hover_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/constants/check_vadjust = 0 -CheckButton/constants/hseparation = 4 -CheckButton/fonts/font = null -CheckButton/icons/off = SubResource( 14 ) -CheckButton/icons/off_disabled = SubResource( 14 ) -CheckButton/icons/on = SubResource( 15 ) -CheckButton/icons/on_disabled = SubResource( 15 ) -CheckButton/styles/disabled = null -CheckButton/styles/focus = null -CheckButton/styles/hover = null -CheckButton/styles/hover_pressed = null -CheckButton/styles/normal = null -CheckButton/styles/pressed = null -HSlider/icons/grabber = SubResource( 16 ) -HSlider/icons/grabber_disabled = null -HSlider/icons/grabber_highlight = SubResource( 16 ) -HSlider/icons/tick = null -HSlider/styles/grabber_area = SubResource( 17 ) -HSlider/styles/grabber_area_highlight = SubResource( 17 ) -HSlider/styles/slider = SubResource( 17 ) -LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) -LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) -LineEdit/colors/cursor_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/colors/font_color = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) -LineEdit/colors/selection_color = Color( 1, 0.8, 0, 1 ) -LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = null -LineEdit/icons/clear = null -LineEdit/styles/focus = SubResource( 18 ) -LineEdit/styles/normal = SubResource( 19 ) -LineEdit/styles/read_only = SubResource( 19 ) -OptionButton/colors/font_color = Color( 0, 0, 0, 1 ) -OptionButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -OptionButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -OptionButton/colors/font_color_pressed = Color( 0, 0, 0, 1 ) -OptionButton/constants/arrow_margin = 2 -OptionButton/constants/hseparation = 2 -OptionButton/fonts/font = null -OptionButton/icons/arrow = SubResource( 20 ) -OptionButton/styles/disabled = null -OptionButton/styles/focus = null -OptionButton/styles/hover = null -OptionButton/styles/normal = null -OptionButton/styles/pressed = null -Panel/styles/panel = SubResource( 21 ) -PopupMenu/colors/font_color = Color( 0, 0, 0, 1 ) -PopupMenu/colors/font_color_accel = Color( 0.701961, 0.701961, 0.701961, 0.8 ) -PopupMenu/colors/font_color_disabled = Color( 0.4, 0.4, 0.4, 0.8 ) -PopupMenu/colors/font_color_hover = Color( 0.388235, 0.388235, 0.388235, 1 ) -PopupMenu/constants/hseparation = 4 -PopupMenu/constants/vseparation = 32 -PopupMenu/fonts/font = null -PopupMenu/icons/checked = SubResource( 22 ) -PopupMenu/icons/radio_checked = SubResource( 23 ) -PopupMenu/icons/radio_unchecked = SubResource( 24 ) -PopupMenu/icons/submenu = null -PopupMenu/icons/unchecked = SubResource( 25 ) -PopupMenu/styles/hover = SubResource( 26 ) -PopupMenu/styles/labeled_separator_left = null -PopupMenu/styles/labeled_separator_right = null -PopupMenu/styles/panel = SubResource( 27 ) -PopupMenu/styles/panel_disabled = null -PopupMenu/styles/separator = null -TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) -TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) -TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) -TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) -TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) -TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) -TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) -TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) -TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) -TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) -TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) -TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) -TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) -TextEdit/colors/font_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) -TextEdit/colors/font_color_selected = Color( 0.34902, 0.34902, 0.34902, 1 ) -TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) -TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) -TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) -TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) -TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) -TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) -TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) -TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) -TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) -TextEdit/constants/completion_lines = 7 -TextEdit/constants/completion_max_width = 50 -TextEdit/constants/completion_scroll_width = 3 -TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = null -TextEdit/icons/fold = null -TextEdit/icons/folded = null -TextEdit/icons/space = null -TextEdit/icons/tab = null -TextEdit/styles/completion = null -TextEdit/styles/focus = null -TextEdit/styles/normal = SubResource( 28 ) -TextEdit/styles/read_only = null -VSlider/icons/grabber = SubResource( 29 ) -VSlider/icons/grabber_disabled = SubResource( 29 ) -VSlider/icons/grabber_highlight = SubResource( 29 ) -VSlider/icons/tick = null -VSlider/styles/grabber_area = SubResource( 30 ) -VSlider/styles/grabber_area_highlight = SubResource( 30 ) -VSlider/styles/slider = SubResource( 30 ) diff --git a/thirdparty/FlatUI/kenneyUI.tres b/thirdparty/FlatUI/kenneyUI.tres deleted file mode 100644 index a1bacc6..0000000 --- a/thirdparty/FlatUI/kenneyUI.tres +++ /dev/null @@ -1,327 +0,0 @@ -[gd_resource type="Theme" load_steps=34 format=2] - -[ext_resource path="res://thirdparty/FlatUI/UIpack_vector.svg" type="Texture" id=1] -[ext_resource path="res://thirdparty/FlatUI/kenvector_future.ttf" type="DynamicFontData" id=2] - -[sub_resource type="StyleBoxTexture" id=1] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 0, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxEmpty" id=2] - -[sub_resource type="StyleBoxTexture" id=3] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 0, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=4] -texture = ExtResource( 1 ) -region_rect = Rect2( 211, 0, 190, 49 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="StyleBoxTexture" id=5] -texture = ExtResource( 1 ) -region_rect = Rect2( 421, 4, 190, 45 ) -margin_left = 12.5436 -margin_right = 8.78053 -margin_top = 10.0349 -margin_bottom = 14.2161 - -[sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 250, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 251, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxEmpty" id=10] - -[sub_resource type="StyleBoxEmpty" id=11] - -[sub_resource type="StyleBoxEmpty" id=12] - -[sub_resource type="StyleBoxEmpty" id=13] - -[sub_resource type="AtlasTexture" id=31] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 250, 644, 36, 36 ) - -[sub_resource type="AtlasTexture" id=32] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 250, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 872, 444, 28, 42 ) - -[sub_resource type="StyleBoxTexture" id=15] -texture = ExtResource( 1 ) -region_rect = Rect2( 840, 316, 192, 6 ) - -[sub_resource type="StyleBoxEmpty" id=16] - -[sub_resource type="StyleBoxTexture" id=17] -texture = ExtResource( 1 ) -region_rect = Rect2( 629, 317, 194, 49 ) -margin_left = 17.1475 -margin_right = 13.718 -margin_top = 12.0032 -margin_bottom = 9.43112 - -[sub_resource type="AtlasTexture" id=18] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 812, 458, 28, 10 ) - -[sub_resource type="StyleBoxTexture" id=19] -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 12.3202 -margin_right = 13.3469 -margin_top = 13.3469 -margin_bottom = 11.2935 - -[sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 250, 544, 36, 36 ) - -[sub_resource type="AtlasTexture" id=26] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 251, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=27] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1, 440, 36, 36 ) - -[sub_resource type="AtlasTexture" id=28] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 0, 544, 36, 36 ) - -[sub_resource type="StyleBoxTexture" id=29] -content_margin_left = 4.0 -content_margin_right = 4.0 -content_margin_top = 4.0 -content_margin_bottom = 4.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 321, 440, 49, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 - -[sub_resource type="StyleBoxTexture" id=30] -content_margin_left = 10.0 -content_margin_right = 10.0 -content_margin_top = 10.0 -content_margin_bottom = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 321, 440, 49, 49 ) -margin_left = 7.94429 -margin_right = 8.73872 -margin_top = 9.53314 -margin_bottom = 13.9025 -expand_margin_top = 10.0 -expand_margin_bottom = 10.0 - -[sub_resource type="StyleBoxTexture" id=22] -content_margin_left = 12.0 -content_margin_top = 10.0 -texture = ExtResource( 1 ) -region_rect = Rect2( 1, 310, 100, 100 ) -margin_left = 10.8072 -margin_right = 9.71325 -margin_top = 28.4299 -margin_bottom = 14.7561 -axis_stretch_vertical = 1 - -[sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 1 ) -region = Rect2( 1007, 450, 39, 31 ) - -[sub_resource type="StyleBoxTexture" id=25] -texture = ExtResource( 1 ) -region_rect = Rect2( 1051, 317, 4, 100 ) - -[sub_resource type="DynamicFont" id=23] -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[resource] -default_font = SubResource( 23 ) -Button/colors/font_color = Color( 0, 0, 0, 1 ) -Button/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -Button/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -Button/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -Button/constants/hseparation = 2 -Button/fonts/font = null -Button/styles/disabled = SubResource( 1 ) -Button/styles/focus = SubResource( 2 ) -Button/styles/hover = SubResource( 3 ) -Button/styles/normal = SubResource( 4 ) -Button/styles/pressed = SubResource( 5 ) -CheckBox/colors/font_color = Color( 0, 0, 0, 1 ) -CheckBox/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckBox/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_hover_pressed = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckBox/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckBox/constants/check_vadjust = 0 -CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = null -CheckBox/icons/checked = SubResource( 6 ) -CheckBox/icons/radio_checked = SubResource( 7 ) -CheckBox/icons/radio_unchecked = SubResource( 8 ) -CheckBox/icons/unchecked = SubResource( 9 ) -CheckBox/styles/disabled = null -CheckBox/styles/focus = null -CheckBox/styles/hover = SubResource( 10 ) -CheckBox/styles/hover_pressed = SubResource( 11 ) -CheckBox/styles/normal = SubResource( 12 ) -CheckBox/styles/pressed = SubResource( 13 ) -CheckButton/colors/font_color = Color( 0, 0, 0, 1 ) -CheckButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -CheckButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -CheckButton/colors/font_color_hover_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/colors/font_color_pressed = Color( 0.388235, 0.388235, 0.388235, 1 ) -CheckButton/constants/check_vadjust = 0 -CheckButton/constants/hseparation = 4 -CheckButton/fonts/font = null -CheckButton/icons/off = SubResource( 31 ) -CheckButton/icons/off_disabled = SubResource( 31 ) -CheckButton/icons/on = SubResource( 32 ) -CheckButton/icons/on_disabled = SubResource( 32 ) -CheckButton/styles/disabled = null -CheckButton/styles/focus = null -CheckButton/styles/hover = null -CheckButton/styles/hover_pressed = null -CheckButton/styles/normal = null -CheckButton/styles/pressed = null -HSlider/icons/grabber = SubResource( 14 ) -HSlider/icons/grabber_disabled = null -HSlider/icons/grabber_highlight = SubResource( 14 ) -HSlider/icons/tick = null -HSlider/styles/grabber_area = SubResource( 15 ) -HSlider/styles/grabber_area_highlight = SubResource( 15 ) -HSlider/styles/slider = SubResource( 15 ) -LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) -LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) -LineEdit/colors/cursor_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/colors/font_color = Color( 0, 0, 0, 1 ) -LineEdit/colors/font_color_selected = Color( 0.894118, 0.894118, 0.894118, 1 ) -LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) -LineEdit/colors/selection_color = Color( 0.34902, 0.34902, 0.34902, 1 ) -LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = null -LineEdit/icons/clear = null -LineEdit/styles/focus = SubResource( 16 ) -LineEdit/styles/normal = SubResource( 17 ) -LineEdit/styles/read_only = SubResource( 17 ) -OptionButton/colors/font_color = Color( 0, 0, 0, 1 ) -OptionButton/colors/font_color_disabled = Color( 0.9, 0.9, 0.9, 0.2 ) -OptionButton/colors/font_color_hover = Color( 0.34902, 0.34902, 0.34902, 1 ) -OptionButton/colors/font_color_pressed = Color( 0, 0, 0, 1 ) -OptionButton/constants/arrow_margin = 2 -OptionButton/constants/hseparation = 2 -OptionButton/fonts/font = null -OptionButton/icons/arrow = SubResource( 18 ) -OptionButton/styles/disabled = null -OptionButton/styles/focus = null -OptionButton/styles/hover = null -OptionButton/styles/normal = null -OptionButton/styles/pressed = null -Panel/styles/panel = SubResource( 19 ) -PopupMenu/colors/font_color = Color( 0, 0, 0, 1 ) -PopupMenu/colors/font_color_accel = Color( 0.701961, 0.701961, 0.701961, 0.8 ) -PopupMenu/colors/font_color_disabled = Color( 0.4, 0.4, 0.4, 0.8 ) -PopupMenu/colors/font_color_hover = Color( 0.388235, 0.388235, 0.388235, 1 ) -PopupMenu/constants/hseparation = 4 -PopupMenu/constants/vseparation = 32 -PopupMenu/fonts/font = null -PopupMenu/icons/checked = SubResource( 20 ) -PopupMenu/icons/radio_checked = SubResource( 26 ) -PopupMenu/icons/radio_unchecked = SubResource( 27 ) -PopupMenu/icons/submenu = null -PopupMenu/icons/unchecked = SubResource( 28 ) -PopupMenu/styles/hover = SubResource( 29 ) -PopupMenu/styles/labeled_separator_left = null -PopupMenu/styles/labeled_separator_right = null -PopupMenu/styles/panel = SubResource( 30 ) -PopupMenu/styles/panel_disabled = null -PopupMenu/styles/separator = null -TextEdit/colors/background_color = Color( 0, 0, 0, 0 ) -TextEdit/colors/bookmark_color = Color( 0.08, 0.49, 0.98, 1 ) -TextEdit/colors/brace_mismatch_color = Color( 1, 0.2, 0.2, 1 ) -TextEdit/colors/breakpoint_color = Color( 0.8, 0.8, 0.4, 0.2 ) -TextEdit/colors/caret_background_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/caret_color = Color( 0.88, 0.88, 0.88, 1 ) -TextEdit/colors/code_folding_color = Color( 0.8, 0.8, 0.8, 0.8 ) -TextEdit/colors/completion_background_color = Color( 0.17, 0.16, 0.2, 1 ) -TextEdit/colors/completion_existing_color = Color( 0.87, 0.87, 0.87, 0.13 ) -TextEdit/colors/completion_font_color = Color( 0.67, 0.67, 0.67, 1 ) -TextEdit/colors/completion_scroll_color = Color( 1, 1, 1, 1 ) -TextEdit/colors/completion_selected_color = Color( 0.26, 0.26, 0.27, 1 ) -TextEdit/colors/current_line_color = Color( 0.25, 0.25, 0.26, 0.8 ) -TextEdit/colors/executing_line_color = Color( 0.2, 0.8, 0.2, 0.4 ) -TextEdit/colors/font_color = Color( 0, 0, 0, 1 ) -TextEdit/colors/font_color_readonly = Color( 0.88, 0.88, 0.88, 0.5 ) -TextEdit/colors/font_color_selected = Color( 0.34902, 0.34902, 0.34902, 1 ) -TextEdit/colors/function_color = Color( 0.4, 0.64, 0.81, 1 ) -TextEdit/colors/line_number_color = Color( 0.67, 0.67, 0.67, 0.4 ) -TextEdit/colors/mark_color = Color( 1, 0.4, 0.4, 0.4 ) -TextEdit/colors/member_variable_color = Color( 0.9, 0.31, 0.35, 1 ) -TextEdit/colors/number_color = Color( 0.92, 0.58, 0.2, 1 ) -TextEdit/colors/safe_line_number_color = Color( 0.67, 0.78, 0.67, 0.6 ) -TextEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) -TextEdit/colors/symbol_color = Color( 0.94, 0.94, 0.94, 1 ) -TextEdit/colors/word_highlighted_color = Color( 0.8, 0.9, 0.9, 0.15 ) -TextEdit/constants/completion_lines = 7 -TextEdit/constants/completion_max_width = 50 -TextEdit/constants/completion_scroll_width = 3 -TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = null -TextEdit/icons/fold = null -TextEdit/icons/folded = null -TextEdit/icons/space = null -TextEdit/icons/tab = null -TextEdit/styles/completion = null -TextEdit/styles/focus = null -TextEdit/styles/normal = SubResource( 22 ) -TextEdit/styles/read_only = null -VSlider/icons/grabber = SubResource( 24 ) -VSlider/icons/grabber_disabled = SubResource( 24 ) -VSlider/icons/grabber_highlight = SubResource( 24 ) -VSlider/icons/tick = null -VSlider/styles/grabber_area = SubResource( 25 ) -VSlider/styles/grabber_area_highlight = SubResource( 25 ) -VSlider/styles/slider = SubResource( 25 ) diff --git a/thirdparty/FlatUI/kenvector_future.ttf b/thirdparty/FlatUI/kenvector_future.ttf deleted file mode 100644 index 39ebdfaa904e4b08df8791f4c99fa1e379c408da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 34136 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 PiOjzua{P-TkKXowY>-!K diff --git a/icon.png b/ui/icon.png similarity index 100% rename from icon.png rename to ui/icon.png diff --git a/icon.png.import b/ui/icon.png.import similarity index 74% rename from icon.png.import rename to ui/icon.png.import index a4c02e6..cdb9c5b 100644 --- a/icon.png.import +++ b/ui/icon.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +path="res://.import/icon.png-e4ddcf96deac54d40dbb592111cc7ec6.stex" metadata={ "vram_texture": false } [deps] -source_file="res://icon.png" -dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] +source_file="res://ui/icon.png" +dest_files=[ "res://.import/icon.png-e4ddcf96deac54d40dbb592111cc7ec6.stex" ] [params]