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 39ebdfa..0000000 Binary files a/thirdparty/FlatUI/kenvector_future.ttf and /dev/null differ 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]