From a3f1961357f96b34ab80683c6f5c42ff841d99fd Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Wed, 23 Oct 2024 17:34:13 +0200 Subject: [PATCH 01/10] Implement SVG Icons (to remove icon folders) Adds in an SVG icon sheet. This allows having color-changing icons and possibly having scalable icons in the future as well. This required changing the icons in some places. We also don't want to manually reference the icon-sheet in scenes, but instead always use the theme (add the icon to the theme, e.g. the MM_Icons type) then assign them in code with `get_theme_icon("settings", "MM_Icons")`. In some cases we might have to update this on theme changes listening to NOTIFICATION_THEME_CHANGED. --- addons/flexible_layout/flexible_tab.gd | 3 +- addons/flexible_layout/flexible_tab.tscn | 4 +- material_maker/nodes/reroute/reroute.gd | 22 +- material_maker/panels/library/library.gd | 11 + material_maker/theme/classic.tres | 255 +- material_maker/theme/default dark.tres | 287 ++- material_maker/theme/default light.tres | 22 +- .../enhanced_theme_system/enhanced_theme.gd | 5 +- material_maker/theme/new_theme_icons.svg | 2249 +++++++++++++++++ .../theme/new_theme_icons.svg.import | 37 + .../widgets/gradient_editor/gradient_edit.gd | 56 +- .../gradient_editor/gradient_edit.tscn | 4 +- .../widgets/gradient_editor/gradient_popup.gd | 9 +- .../gradient_editor/gradient_popup.tscn | 9 +- .../size_option_button/size_option_button.gd | 1 + 15 files changed, 2738 insertions(+), 236 deletions(-) create mode 100644 material_maker/theme/new_theme_icons.svg create mode 100644 material_maker/theme/new_theme_icons.svg.import diff --git a/addons/flexible_layout/flexible_tab.gd b/addons/flexible_layout/flexible_tab.gd index b8ea24073..dc106e330 100644 --- a/addons/flexible_layout/flexible_tab.gd +++ b/addons/flexible_layout/flexible_tab.gd @@ -6,7 +6,6 @@ var updating : bool = false func _ready(): - $Container/Close.texture_normal = get_theme_icon("close", "TabBar") update() func _notification(what): @@ -23,6 +22,8 @@ func get_flex_layout(): return flex_tab.flexible_layout func update(): + $Container/Close.texture_normal = get_theme_icon("close", "MM_FlexibleTab") + $Container/Undock.texture_normal = get_theme_icon("undock", "MM_FlexibleTab") if not updating: updating = true var is_current: bool = (get_index() == get_parent().get_parent().current) diff --git a/addons/flexible_layout/flexible_tab.tscn b/addons/flexible_layout/flexible_tab.tscn index a3d945c21..a1b4c7f67 100644 --- a/addons/flexible_layout/flexible_tab.tscn +++ b/addons/flexible_layout/flexible_tab.tscn @@ -1,7 +1,6 @@ -[gd_scene load_steps=4 format=3 uid="uid://e06xegp2tp3f"] +[gd_scene load_steps=3 format=3 uid="uid://e06xegp2tp3f"] [ext_resource type="Script" path="res://addons/flexible_layout/flexible_tab.gd" id="1"] -[ext_resource type="Texture2D" uid="uid://xuy6dfh1rsne" path="res://addons/flexible_layout/undock.png" id="2_nx0qp"] [sub_resource type="PlaceholderTexture2D" id="PlaceholderTexture2D_bok24"] size = Vector2(16, 16) @@ -31,7 +30,6 @@ visible = false layout_mode = 2 size_flags_horizontal = 4 size_flags_vertical = 4 -texture_normal = ExtResource("2_nx0qp") [node name="Close" type="TextureButton" parent="Container"] visible = false diff --git a/material_maker/nodes/reroute/reroute.gd b/material_maker/nodes/reroute/reroute.gd index 943e120cd..5288f0209 100644 --- a/material_maker/nodes/reroute/reroute.gd +++ b/material_maker/nodes/reroute/reroute.gd @@ -7,7 +7,8 @@ const PREVIEW_SIZES : Array[int] = [ 0, 64, 128, 192] func _ready() -> void: super._ready() close_button.visible = false - set_theme_type("Reroute") + theme_type_variation = "MM_Reroute" + #set_theme_type("Reroute") on_connections_changed.call_deferred() func set_generator(g : MMGenBase) -> void: @@ -16,12 +17,13 @@ func set_generator(g : MMGenBase) -> void: await set_preview(g.get_parameter("preview")) update_node() -func set_theme_type(type : StringName): - var current_theme : Theme = mm_globals.main_window.theme - for constant in current_theme.get_constant_list(type): - add_theme_constant_override(constant, current_theme.get_constant(constant, type)) - for stylebox in current_theme.get_stylebox_list(type): - add_theme_stylebox_override(stylebox, current_theme.get_stylebox(stylebox, type)) + +#func set_theme_type(type : StringName): + #var current_theme : Theme = mm_globals.main_window.theme + #for constant in current_theme.get_constant_list(type): + #add_theme_constant_override(constant, current_theme.get_constant(constant, type)) + #for stylebox in current_theme.get_stylebox_list(type): + #add_theme_stylebox_override(stylebox, current_theme.get_stylebox(stylebox, type)) func on_connections_changed(): var graph_edit = get_parent() @@ -95,7 +97,8 @@ func set_preview(v : int): if v == 0: if preview: preview.queue_free() - set_theme_type("Reroute") + theme_type_variation = "MM_Reroute" + #set_theme_type("Reroute") else: if ! preview: preview = preload("res://material_maker/panels/preview_2d/preview_2d_node.tscn").instantiate() @@ -104,6 +107,7 @@ func set_preview(v : int): update_preview(preview) var preview_size : int = PREVIEW_SIZES[v] preview.custom_minimum_size = Vector2(preview_size, preview_size) - set_theme_type("ReroutePreview") + #set_theme_type("ReroutePreview") + theme_type_variation = "MM_ReroutePreview" await get_tree().process_frame size = Vector2(0, 0) diff --git a/material_maker/panels/library/library.gd b/material_maker/panels/library/library.gd index 9fd6df739..0344afc5e 100644 --- a/material_maker/panels/library/library.gd +++ b/material_maker/panels/library/library.gd @@ -39,6 +39,17 @@ func _ready() -> void: libraries_button.get_popup().id_pressed.connect(self._on_Libraries_id_pressed) init_expanded_items() update_tree() + update_theme() + +func _notification(what: int) -> void: + if not is_node_ready(): + return + + if what == NOTIFICATION_THEME_CHANGED: + update_theme() + +func update_theme() -> void: + libraries_button.icon = get_theme_icon("settings", "MM_Icons") func init_expanded_items() -> void: var f = FileAccess.open("user://expanded_items.bin", FileAccess.READ) diff --git a/material_maker/theme/classic.tres b/material_maker/theme/classic.tres index 37193941f..0faeb3dac 100644 --- a/material_maker/theme/classic.tres +++ b/material_maker/theme/classic.tres @@ -1,10 +1,7 @@ -[gd_resource type="Theme" load_steps=62 format=3 uid="uid://42cileyfwaca"] +[gd_resource type="Theme" load_steps=83 format=3 uid="uid://42cileyfwaca"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/new_theme_icons.svg" id="1_7p32q"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_l05jd"] -[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="19"] -[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="32"] -[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="33"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="56"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"] content_margin_left = 3.0 @@ -55,6 +52,50 @@ content_margin_right = 3.0 content_margin_bottom = 3.0 bg_color = Color(0.14902, 0.172549, 0.231373, 1) +[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"] +atlas = ExtResource("1_7p32q") +region = Rect2(80, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"] +atlas = ExtResource("1_7p32q") +region = Rect2(16, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"] +atlas = ExtResource("1_7p32q") +region = Rect2(0, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"] +atlas = ExtResource("1_7p32q") +region = Rect2(32, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"] +atlas = ExtResource("1_7p32q") +region = Rect2(64, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"] +atlas = ExtResource("1_7p32q") +region = Rect2(96, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] +atlas = ExtResource("1_7p32q") +region = Rect2(64, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"] +atlas = ExtResource("1_7p32q") +region = Rect2(80, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"] +atlas = ExtResource("1_7p32q") +region = Rect2(96, 96, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_btw0t"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -225,6 +266,18 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.2, 0.23, 0.31, 1) +[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 0, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] +atlas = ExtResource("1_7p32q") +region = Rect2(32, 0, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"] content_margin_left = 10.0 content_margin_top = 10.0 @@ -340,6 +393,40 @@ border_color = Color(0.099986, 0.099986, 0.0999859, 1) [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_u368o"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"] + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7hrav"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -360,6 +447,42 @@ content_margin_right = 6.0 content_margin_bottom = 6.0 bg_color = Color(0.117647, 0.121569, 0.133333, 1) +[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"] +atlas = ExtResource("1_7p32q") +region = Rect2(80, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"] +atlas = ExtResource("1_7p32q") +region = Rect2(16, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"] +atlas = ExtResource("1_7p32q") +region = Rect2(0, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"] +atlas = ExtResource("1_7p32q") +region = Rect2(32, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"] +atlas = ExtResource("1_7p32q") +region = Rect2(64, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"] +atlas = ExtResource("1_7p32q") +region = Rect2(96, 112, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -384,58 +507,9 @@ border_width_bottom = 1 border_color = Color(0.556194, 0.581022, 0.642742, 1) shadow_size = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7xfok"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6or45"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_smd7i"] - -[sub_resource type="FontFile" id="FontFile_00yus"] -fallbacks = Array[Font]([ExtResource("56")]) -cache/0/16/0/ascent = 0.0 -cache/0/16/0/descent = 0.0 -cache/0/16/0/underline_position = 0.0 -cache/0/16/0/underline_thickness = 0.0 -cache/0/16/0/scale = 1.0 -cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_otynv"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kbm1t"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7bw33"] +[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 0, 16, 16) [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7nmb2"] content_margin_left = 7.0 @@ -550,10 +624,21 @@ Button/styles/hover = SubResource("StyleBoxFlat_2qiie") Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie") Button/styles/normal = SubResource("StyleBoxFlat_644rd") Button/styles/pressed = SubResource("StyleBoxFlat_rxikb") +CheckBox/icons/checked = SubResource("AtlasTexture_chskd") +CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub") +CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu") +CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3") +CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87") +CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7") +CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2") +CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy") GraphEdit/colors/grid_major = Color(0.321569, 0.337255, 0.384314, 1) GraphEdit/colors/grid_minor = Color(0.321569, 0.337255, 0.384314, 1) GraphEdit/constants/port_hotzone_inner_extent = 8 GraphEdit/constants/port_hotzone_outer_extent = 50 +GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") +GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") +GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_btw0t") GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s") GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1) @@ -586,6 +671,9 @@ MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7") MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_e8p1m") MM_FlexibleTab/base_type = &"TabBar" MM_FlexibleTab/constants/separation = 3 +MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") +MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") +MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") MM_MainBackground/base_type = &"PanelContainer" MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5") MM_NodeCheckbox/base_type = &"Button" @@ -614,47 +702,30 @@ MM_PanelBackground/base_type = &"PanelContainer" MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1") MM_ProjectsBackground/base_type = &"Panel" MM_ProjectsBackground/styles/panel = SubResource("StyleBoxEmpty_u368o") +MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb") +MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y") +MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp") +MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb") +MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1") +MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k") +MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj") +MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj") MM_StatusBarBackground/base_type = &"PanelContainer" MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_7hrav") Panel/styles/panel = SubResource("StyleBoxFlat_dscxc") +PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x") +PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4") +PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi") +PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4") +PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty") +PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo") +PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u") +PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn") +PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj") PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc") PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu") -Reroute/colors/close_color = Color(1, 1, 1, 0.7) -Reroute/colors/resizer_color = Color(1, 1, 1, 0.7) -Reroute/colors/title_color = Color(1, 1, 1, 1) -Reroute/constants/close_h_offset = 20 -Reroute/constants/close_offset = 20 -Reroute/constants/port_h_offset = 0 -Reroute/constants/port_offset = 0 -Reroute/constants/separation = 1 -Reroute/constants/title_h_offset = -16 -Reroute/constants/title_offset = 20 -Reroute/icons/close = ExtResource("19") -Reroute/icons/port = ExtResource("32") -Reroute/icons/resizer = ExtResource("33") -Reroute/styles/panel = SubResource("StyleBoxFlat_7xfok") -Reroute/styles/panel_selected = SubResource("StyleBoxFlat_6or45") -Reroute/styles/titlebar = SubResource("StyleBoxEmpty_smd7i") -Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_smd7i") -ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/title_color = Color(1, 1, 1, 1) -ReroutePreview/constants/close_h_offset = 20 -ReroutePreview/constants/close_offset = 20 -ReroutePreview/constants/port_h_offset = 0 -ReroutePreview/constants/port_offset = 0 -ReroutePreview/constants/separation = 1 -ReroutePreview/constants/title_h_offset = -16 -ReroutePreview/constants/title_offset = 20 -ReroutePreview/fonts/title_font = SubResource("FontFile_00yus") -ReroutePreview/icons/close = ExtResource("19") -ReroutePreview/icons/port = ExtResource("32") -ReroutePreview/icons/resizer = ExtResource("33") -ReroutePreview/styles/panel = SubResource("StyleBoxFlat_otynv") -ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_kbm1t") -ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_7bw33") -ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_7bw33") TabBar/constants/h_separation = 6 +TabBar/icons/close = SubResource("AtlasTexture_1wpt7") TabBar/styles/tab_focus = SubResource("StyleBoxFlat_7nmb2") TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_62r2q") TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv") diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres index e0012cd10..5e9c051fc 100644 --- a/material_maker/theme/default dark.tres +++ b/material_maker/theme/default dark.tres @@ -1,10 +1,7 @@ -[gd_resource type="Theme" load_steps=59 format=3 uid="uid://b628lwfk6ig2c"] +[gd_resource type="Theme" load_steps=86 format=3 uid="uid://b628lwfk6ig2c"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] -[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="2_qksaj"] -[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="3_chjul"] -[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="4_ak1f4"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="5_euge2"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/new_theme_icons.svg" id="2_dekrq"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"] content_margin_left = 6.0 @@ -62,6 +59,50 @@ corner_radius_top_right = 3 corner_radius_bottom_right = 3 corner_radius_bottom_left = 3 +[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"] +atlas = ExtResource("2_dekrq") +region = Rect2(80, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"] +atlas = ExtResource("2_dekrq") +region = Rect2(112, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"] +atlas = ExtResource("2_dekrq") +region = Rect2(16, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"] +atlas = ExtResource("2_dekrq") +region = Rect2(0, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"] +atlas = ExtResource("2_dekrq") +region = Rect2(32, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"] +atlas = ExtResource("2_dekrq") +region = Rect2(64, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"] +atlas = ExtResource("2_dekrq") +region = Rect2(96, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] +atlas = ExtResource("2_dekrq") +region = Rect2(64, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"] +atlas = ExtResource("2_dekrq") +region = Rect2(80, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"] +atlas = ExtResource("2_dekrq") +region = Rect2(96, 96, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -226,6 +267,38 @@ corner_radius_bottom_right = 5 corner_radius_bottom_left = 5 corner_detail = 4 +[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 0, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"] +atlas = ExtResource("2_dekrq") +region = Rect2(112, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] +atlas = ExtResource("2_dekrq") +region = Rect2(32, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"] +atlas = ExtResource("2_dekrq") +region = Rect2(112, 16, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] +atlas = ExtResource("2_dekrq") +region = Rect2(64, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] +atlas = ExtResource("2_dekrq") +region = Rect2(32, 0, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"] content_margin_left = 10.0 content_margin_top = 10.0 @@ -315,6 +388,10 @@ corner_radius_bottom_right = 4 corner_radius_bottom_left = 4 corner_detail = 4 +[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"] +atlas = ExtResource("2_dekrq") +region = Rect2(112, 16, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"] content_margin_left = 2.0 content_margin_top = 2.0 @@ -364,6 +441,40 @@ corner_radius_top_right = 4 corner_radius_bottom_right = 4 corner_radius_bottom_left = 4 +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"] + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xeqlk"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -383,6 +494,42 @@ content_margin_right = 6.0 content_margin_bottom = 6.0 bg_color = Color(0.117647, 0.121569, 0.133333, 1) +[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"] +atlas = ExtResource("2_dekrq") +region = Rect2(80, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"] +atlas = ExtResource("2_dekrq") +region = Rect2(112, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"] +atlas = ExtResource("2_dekrq") +region = Rect2(16, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"] +atlas = ExtResource("2_dekrq") +region = Rect2(0, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"] +atlas = ExtResource("2_dekrq") +region = Rect2(32, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"] +atlas = ExtResource("2_dekrq") +region = Rect2(64, 112, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"] +atlas = ExtResource("2_dekrq") +region = Rect2(96, 112, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -401,58 +548,9 @@ content_margin_right = 3.0 content_margin_bottom = 3.0 bg_color = Color(0.117647, 0.121569, 0.133333, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7xfok"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6or45"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_smd7i"] - -[sub_resource type="FontFile" id="FontFile_00yus"] -fallbacks = Array[Font]([ExtResource("5_euge2")]) -cache/0/16/0/ascent = 0.0 -cache/0/16/0/descent = 0.0 -cache/0/16/0/underline_position = 0.0 -cache/0/16/0/underline_thickness = 0.0 -cache/0/16/0/scale = 1.0 -cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_otynv"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kbm1t"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7bw33"] +[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"] +atlas = ExtResource("2_dekrq") +region = Rect2(48, 0, 16, 16) [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"] content_margin_left = 7.0 @@ -556,10 +654,21 @@ Button/styles/hover = SubResource("StyleBoxFlat_2qiie") Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie") Button/styles/normal = SubResource("StyleBoxFlat_rxikb") Button/styles/pressed = SubResource("StyleBoxFlat_rxikb") +CheckBox/icons/checked = SubResource("AtlasTexture_chskd") +CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub") +CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu") +CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3") +CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87") +CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7") +CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2") +CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy") GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1) GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1) GraphEdit/constants/port_hotzone_inner_extent = 8 GraphEdit/constants/port_hotzone_outer_extent = 50 +GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") +GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") +GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_pxlc8") GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s") GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1) @@ -596,6 +705,14 @@ MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7") MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_mv8c7") MM_FlexibleTab/base_type = &"TabBar" MM_FlexibleTab/constants/separation = 3 +MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") +MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") +MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs") +MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak") +MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd") +MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od") +MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd") +MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") MM_MainBackground/base_type = &"PanelContainer" MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5") MM_NodeCheckbox/base_type = &"Button" @@ -613,6 +730,7 @@ MM_NodeGradientEditPopup/base_type = &"PanelContainer" MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs") MM_NodeImageEdit/base_type = &"Button" MM_NodeOptionEdit/base_type = &"OptionButton" +MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3") MM_NodeOptionEditPopup/base_type = &"PopupMenu" MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py") MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_j32ac") @@ -624,6 +742,16 @@ MM_PanelBackground/base_type = &"PanelContainer" MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1") MM_ProjectsBackground/base_type = &"Panel" MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_1k0sx") +MM_Reroute/base_type = &"GraphNode" +MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb") +MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y") +MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp") +MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb") +MM_ReroutePreview/base_type = &"GraphNode" +MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1") +MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k") +MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj") +MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj") MM_StatusBarBackground/base_type = &"PanelContainer" MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_xeqlk") Panel/styles/panel = SubResource("StyleBoxFlat_dscxc") @@ -631,48 +759,23 @@ PopupMenu/colors/font_accelerator_color = Color(0.7, 0.7, 0.7, 0.8) PopupMenu/colors/font_color = Color(0.875, 0.875, 0.875, 1) PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8) PopupMenu/colors/font_hover_color = Color(0.875, 0.875, 0.875, 1) +PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x") +PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4") +PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi") +PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4") +PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty") +PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo") +PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u") +PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn") +PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj") PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc") PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu") -Reroute/colors/close_color = Color(1, 1, 1, 0.7) -Reroute/colors/resizer_color = Color(1, 1, 1, 0.7) -Reroute/colors/title_color = Color(1, 1, 1, 1) -Reroute/constants/close_h_offset = 20 -Reroute/constants/close_offset = 20 -Reroute/constants/port_h_offset = 0 -Reroute/constants/port_offset = 0 -Reroute/constants/separation = 1 -Reroute/constants/title_h_offset = -16 -Reroute/constants/title_offset = 20 -Reroute/icons/close = ExtResource("2_qksaj") -Reroute/icons/port = ExtResource("3_chjul") -Reroute/icons/resizer = ExtResource("4_ak1f4") -Reroute/styles/panel = SubResource("StyleBoxFlat_7xfok") -Reroute/styles/panel_selected = SubResource("StyleBoxFlat_6or45") -Reroute/styles/titlebar = SubResource("StyleBoxEmpty_smd7i") -Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_smd7i") -ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/title_color = Color(1, 1, 1, 1) -ReroutePreview/constants/close_h_offset = 20 -ReroutePreview/constants/close_offset = 20 -ReroutePreview/constants/port_h_offset = 0 -ReroutePreview/constants/port_offset = 0 -ReroutePreview/constants/separation = 1 -ReroutePreview/constants/title_h_offset = -16 -ReroutePreview/constants/title_offset = 20 -ReroutePreview/fonts/title_font = SubResource("FontFile_00yus") -ReroutePreview/icons/close = ExtResource("2_qksaj") -ReroutePreview/icons/port = ExtResource("3_chjul") -ReroutePreview/icons/resizer = ExtResource("4_ak1f4") -ReroutePreview/styles/panel = SubResource("StyleBoxFlat_otynv") -ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_kbm1t") -ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_7bw33") -ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_7bw33") TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1) TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1) TabBar/colors/font_unselected_color = Color(0.7, 0.7, 0.7, 1) TabBar/constants/h_separation = 6 +TabBar/icons/close = SubResource("AtlasTexture_1wpt7") TabBar/styles/tab_focus = SubResource("StyleBoxFlat_ax2cv") TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_708uu") TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv") diff --git a/material_maker/theme/default light.tres b/material_maker/theme/default light.tres index 11a3bb09f..2a95c44e9 100644 --- a/material_maker/theme/default light.tres +++ b/material_maker/theme/default light.tres @@ -1,4 +1,4 @@ -[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=97 format=3 uid="uid://u00kx2lkkx8j"] +[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=100 format=3 uid="uid://u00kx2lkkx8j"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_de56q"] [ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="2_gdmjv"] @@ -661,6 +661,24 @@ name = "Placeholder Color" orig = Color(0.87451, 0.87451, 0.87451, 0.6) target = Color(0.169245, 0.169245, 0.169245, 0.6) +[sub_resource type="Resource" id="Resource_cisvi"] +script = ExtResource("4_rhf2q") +name = "Main" +orig = Color(1, 1, 1, 1) +target = Color(0.0562916, 0.0562916, 0.0562916, 1) + +[sub_resource type="Resource" id="Resource_j2h7k"] +script = ExtResource("4_rhf2q") +name = "Secondary" +orig = Color(0.933333, 0.521569, 0.909804, 1) +target = Color(0.149953, 0.652053, 0.834827, 1) + +[sub_resource type="Resource" id="Resource_8dhbo"] +script = ExtResource("4_rhf2q") +name = "MainDisabled" +orig = Color(0.807843, 0.807843, 0.807843, 1) +target = Color(0.237539, 0.237539, 0.237539, 1) + [sub_resource type="Resource" id="Resource_ub5ur"] script = ExtResource("4_rhf2q") name = "Main Background" @@ -915,5 +933,5 @@ Tree/styles/selected_focus = SubResource("StyleBoxFlat_uf4s7") script = ExtResource("5_fagh3") base_theme = ExtResource("3_e7v0o") font_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")]) -icon_color_swaps = Array[ExtResource("4_rhf2q")]([]) +icon_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo")]) theme_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")]) diff --git a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd index 42f733c9a..f507f75fd 100644 --- a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd +++ b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd @@ -135,7 +135,10 @@ func update(at:Node=null) -> void: var texture: AtlasTexture = get_icon(icon_name, type) var texture_scale: float = texture.get_meta("scale", 1)# * scale - texture.atlas = get_dynamic_svg(path, texture_scale, icon_color_swaps) + if base_texture.has_meta("keep_colors"): + texture.atlas = get_dynamic_svg(path, texture_scale) + else: + texture.atlas = get_dynamic_svg(path, texture_scale, icon_color_swaps) var base_region: Rect2 = base_texture.region texture.region.position = base_region.position * texture_scale diff --git a/material_maker/theme/new_theme_icons.svg b/material_maker/theme/new_theme_icons.svg new file mode 100644 index 000000000..4ebf20473 --- /dev/null +++ b/material_maker/theme/new_theme_icons.svg @@ -0,0 +1,2249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/material_maker/theme/new_theme_icons.svg.import b/material_maker/theme/new_theme_icons.svg.import new file mode 100644 index 000000000..a93735a25 --- /dev/null +++ b/material_maker/theme/new_theme_icons.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7mq31csbj1fg" +path="res://.godot/imported/new_theme_icons.svg-311b4b29e327a617fca12fcb13bb842e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://material_maker/theme/new_theme_icons.svg" +dest_files=["res://.godot/imported/new_theme_icons.svg-311b4b29e327a617fca12fcb13bb842e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/material_maker/widgets/gradient_editor/gradient_edit.gd b/material_maker/widgets/gradient_editor/gradient_edit.gd index eff34af4d..a9723a88b 100644 --- a/material_maker/widgets/gradient_editor/gradient_edit.gd +++ b/material_maker/widgets/gradient_editor/gradient_edit.gd @@ -25,7 +25,7 @@ var active_cursor := 0: value = wrap(value, 0, %Gradient.get_child_count()) active_cursor = value active_cursor_changed.emit() - + for i in %Gradient.get_children(): i.queue_redraw() @@ -39,7 +39,7 @@ var hovered := false func _ready() -> void: %Gradient.material = %Gradient.material.duplicate(true) - + update_visuals() @@ -47,15 +47,15 @@ func set_value(v: MMGradient) -> void: for c in %Gradient.get_children(): c.queue_free() c.get_parent().remove_child(c) - + if value == null: return for p in value.points: add_cursor(p.v, p.c) - + sort_cursors() - + update_shader() value_was_set.emit() @@ -68,17 +68,17 @@ func set_interpolation(interpolation_type:int) -> void: func update_from_value(merge_undos := true) -> void: value.clear() - + for c in %Gradient.get_children(): value.add_point(c.get_cursor_offset(), c.color) - + update_shader() - + if is_instance_valid(popup): popup.set_gradient(value, active_cursor) - + sort_cursors() - + updated.emit(value, merge_undos) @@ -91,7 +91,7 @@ func _gui_input(ev:InputEvent) -> void: sort_cursors() active_cursor = cursor.cursor_index update_from_value(false) - + if preview_cursor: preview_cursor.set_cursor_offset(position_to_offset(get_local_mouse_position())) @@ -99,22 +99,22 @@ func _gui_input(ev:InputEvent) -> void: func select_color(cursor:GradientEditCursor) -> void: active_cursor = cursor.cursor_index mode = Modes.SELECTING_COLOR - + var color_picker_popup := preload("res://material_maker/widgets/color_picker_popup/color_picker_popup.tscn").instantiate() add_child(color_picker_popup) - + var color_picker := color_picker_popup.get_node("ColorPicker") color_picker.color = cursor.color color_picker.color_changed.connect(cursor.set_cursor_color) - + var _scale := get_global_transform().get_scale() color_picker_popup.position.x = global_position.x + size.x*_scale.x + 10 color_picker_popup.position.y = global_position.y color_picker_popup.position += get_window().position - + color_picker_popup.popup_hide.connect(color_picker_popup.queue_free) color_picker_popup.popup_hide.connect(set.bind("mode", Modes.IDLE)) - + color_picker_popup.popup() @@ -222,7 +222,7 @@ func _on_popup_button_toggled(toggled_on: bool) -> void: if toggled_on: popup = load("res://material_maker/widgets/gradient_editor/gradient_popup.tscn").instantiate() add_child(popup) - + popup.updated.connect( func(val, merge_undos): value = val @@ -230,12 +230,12 @@ func _on_popup_button_toggled(toggled_on: bool) -> void: ) popup.about_to_close.connect(%PopupButton.call_deferred.bind("set_pressed_no_signal", false)) popup.active_cursor_changed.connect(func(val): active_cursor = val) - + popup.set_gradient(value, active_cursor) update_popup_position() set_notify_transform(true) - + else: if is_instance_valid(popup): popup.close() @@ -281,7 +281,7 @@ func _drop_data(pos: Vector2, data: Variant) -> void: if gradient != null: value = MMType.deserialize_value(gradient) updated.emit(value, false) - + if preview_cursor: preview_cursor.queue_free() preview_cursor = null @@ -291,7 +291,7 @@ func _drop_data(pos: Vector2, data: Variant) -> void: func _input(ev:InputEvent) -> void: if not Rect2(Vector2(), size).has_point(get_local_mouse_position()): return - + if mode == Modes.IDLE: if ev is InputEventKey and ev.is_command_or_control_pressed(): if not ev.pressed: @@ -302,10 +302,10 @@ func _input(ev:InputEvent) -> void: val = Color.from_string(DisplayServer.clipboard_get(), Color.WHITE) else: val = str_to_var(DisplayServer.clipboard_get()) - + _drop_data(get_local_mouse_position(), val) accept_event() - + if ev.keycode == KEY_C: DisplayServer.clipboard_set(var_to_str(MMType.serialize_value(value))) accept_event() @@ -320,6 +320,8 @@ func remove_popup_button() -> void: func update_visuals() -> void: + if %PopupButton: + %PopupButton.icon = get_theme_icon("dropdown", "MM_Icons") var is_hovered := Rect2(Vector2(), size).has_point(get_local_mouse_position()) if is_hovered != hovered: hovered = is_hovered @@ -330,11 +332,19 @@ func update_visuals() -> void: func _notification(what: int) -> void: + if not is_node_ready(): + return + if get_meta("doing_theme_change", false): + return + match what: NOTIFICATION_TRANSFORM_CHANGED: update_popup_position() NOTIFICATION_THEME_CHANGED: + set_meta("doing_theme_change", true) update_visuals() + await get_tree().process_frame + set_meta("doing_theme_change", false) func _draw() -> void: diff --git a/material_maker/widgets/gradient_editor/gradient_edit.tscn b/material_maker/widgets/gradient_editor/gradient_edit.tscn index 75f41740f..86d1cb010 100644 --- a/material_maker/widgets/gradient_editor/gradient_edit.tscn +++ b/material_maker/widgets/gradient_editor/gradient_edit.tscn @@ -1,7 +1,6 @@ -[gd_scene load_steps=7 format=3 uid="uid://cp6ft7qbucfam"] +[gd_scene load_steps=6 format=3 uid="uid://cp6ft7qbucfam"] [ext_resource type="Script" path="res://material_maker/widgets/gradient_editor/gradient_edit.gd" id="1_51wqf"] -[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="2_kwkci"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j7yhr"] content_margin_left = 3.0 @@ -62,7 +61,6 @@ mouse_filter = 2 unique_name_in_owner = true layout_mode = 2 toggle_mode = true -icon = ExtResource("2_kwkci") flat = true [connection signal="focus_entered" from="." to="." method="_on_focus_entered"] diff --git a/material_maker/widgets/gradient_editor/gradient_popup.gd b/material_maker/widgets/gradient_editor/gradient_popup.gd index d8ded0def..a2b5401b3 100644 --- a/material_maker/widgets/gradient_editor/gradient_popup.gd +++ b/material_maker/widgets/gradient_editor/gradient_popup.gd @@ -7,12 +7,15 @@ signal active_cursor_changed(index:int) func _ready() -> void: %GradientEdit.remove_popup_button() + %Pin.icon = get_theme_icon("pin_unpinned", "MM_Icons") + %Previous.icon = get_theme_icon("arrow_left", "MM_Icons") + %Next.icon = get_theme_icon("arrow_right", "MM_Icons") func set_gradient(value:MMGradient, cursor_index := 0) -> void: %GradientEdit.value = value - - # Usually the gradient isn't instantly loaded, + + # Usually the gradient isn't instantly loaded, # because the nodes size isn't yet correct, so we wait until the Cursors are loaded await %GradientEdit.value_was_set %Interpolation.selected = value.interpolation @@ -36,7 +39,7 @@ func close() -> void: func _on_gradient_edit_updated(value: Variant, merge_undos: bool) -> void: # Propagate changes to the parent GradientEdit updated.emit(value, merge_undos) - + # Update values of the active cursor _on_gradient_edit_active_cursor_changed() diff --git a/material_maker/widgets/gradient_editor/gradient_popup.tscn b/material_maker/widgets/gradient_editor/gradient_popup.tscn index 48bdddb51..de7edab75 100644 --- a/material_maker/widgets/gradient_editor/gradient_popup.tscn +++ b/material_maker/widgets/gradient_editor/gradient_popup.tscn @@ -1,12 +1,9 @@ -[gd_scene load_steps=8 format=3 uid="uid://in4lqr3eetvc"] +[gd_scene load_steps=5 format=3 uid="uid://in4lqr3eetvc"] [ext_resource type="Script" path="res://material_maker/widgets/gradient_editor/gradient_popup.gd" id="1"] [ext_resource type="PackedScene" uid="uid://rflulhsuy3ax" path="res://material_maker/widgets/float_edit/float_edit.tscn" id="2_fotv7"] [ext_resource type="PackedScene" uid="uid://cp6ft7qbucfam" path="res://material_maker/widgets/gradient_editor/gradient_edit.tscn" id="2_uait3"] -[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="2_xmqsa"] [ext_resource type="PackedScene" uid="uid://dj5q8sxvd3gci" path="res://material_maker/widgets/option_edit/option_edit.tscn" id="3_2wy2b"] -[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="3_bxwrk"] -[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="4_fwye6"] [node name="GradientPopup" type="MarginContainer"] top_level = true @@ -33,7 +30,6 @@ alignment = 2 [node name="Previous" type="Button" parent="Panel/VBox/HBox"] unique_name_in_owner = true layout_mode = 2 -icon = ExtResource("2_xmqsa") [node name="Offset" parent="Panel/VBox/HBox" instance=ExtResource("2_fotv7")] unique_name_in_owner = true @@ -45,7 +41,6 @@ float_only = true [node name="Next" type="Button" parent="Panel/VBox/HBox"] unique_name_in_owner = true layout_mode = 2 -icon = ExtResource("4_fwye6") [node name="Control" type="Control" parent="Panel/VBox/HBox"] custom_minimum_size = Vector2(15, 0) @@ -57,6 +52,7 @@ layout_mode = 2 selected = 0 item_count = 4 popup/item_0/text = "Constant" +popup/item_0/id = 0 popup/item_1/text = "Linear" popup/item_1/id = 1 popup/item_2/text = "SmoothStep" @@ -69,7 +65,6 @@ unique_name_in_owner = true layout_mode = 2 tooltip_text = "Pin" toggle_mode = true -icon = ExtResource("3_bxwrk") flat = true [node name="GradientEdit" parent="Panel/VBox" instance=ExtResource("2_uait3")] diff --git a/material_maker/widgets/size_option_button/size_option_button.gd b/material_maker/widgets/size_option_button/size_option_button.gd index 6a5420167..a2254f789 100644 --- a/material_maker/widgets/size_option_button/size_option_button.gd +++ b/material_maker/widgets/size_option_button/size_option_button.gd @@ -9,6 +9,7 @@ signal size_value_changed(s) func _ready() -> void: super() + theme_type_variation = "MM_NodeOptionEdit" connect("item_selected", Callable(self, "_on_item_selected")) update_options() From 34cd0327da10ae8eee4b5e5d2a6d1feeca7ed284 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Wed, 23 Oct 2024 17:34:59 +0200 Subject: [PATCH 02/10] Remove the icon folders --- .../theme/dark/checkbox_checked.png | Bin 239 -> 0 bytes .../theme/dark/checkbox_checked.png.import | 34 ---------------- .../theme/dark/checkbox_radio_checked.png | Bin 248 -> 0 bytes .../dark/checkbox_radio_checked.png.import | 34 ---------------- .../theme/dark/checkbox_radio_unchecked.png | Bin 197 -> 0 bytes .../dark/checkbox_radio_unchecked.png.import | 34 ---------------- .../theme/dark/checkbox_unchecked.png | Bin 141 -> 0 bytes .../theme/dark/checkbox_unchecked.png.import | 34 ---------------- material_maker/theme/dark/checkbutton_off.png | Bin 290 -> 0 bytes .../theme/dark/checkbutton_off.png.import | 34 ---------------- .../theme/dark/checkbutton_off_disabled.png | Bin 84 -> 0 bytes .../dark/checkbutton_off_disabled.png.import | 34 ---------------- material_maker/theme/dark/checkbutton_on.png | Bin 318 -> 0 bytes .../theme/dark/checkbutton_on.png.import | 34 ---------------- .../theme/dark/checkbutton_on_disabled.png | Bin 84 -> 0 bytes .../dark/checkbutton_on_disabled.png.import | 34 ---------------- .../theme/dark/colorpickerbutton_bg.png | Bin 93 -> 0 bytes .../dark/colorpickerbutton_bg.png.import | 34 ---------------- .../theme/dark/curve_preset_bevel.tres | 8 ---- .../theme/dark/curve_preset_bounce.tres | 8 ---- .../theme/dark/curve_preset_easein.tres | 8 ---- .../theme/dark/curve_preset_easeinout.tres | 8 ---- .../theme/dark/curve_preset_easeout.tres | 8 ---- .../theme/dark/curve_preset_linear.tres | 8 ---- .../theme/dark/curve_preset_sawtooth.tres | 8 ---- material_maker/theme/dark/curve_presets.svg | 13 ------ .../theme/dark/curve_presets.svg.import | 37 ------------------ material_maker/theme/dark/graphedit_minus.png | Bin 249 -> 0 bytes .../theme/dark/graphedit_minus.png.import | 34 ---------------- material_maker/theme/dark/graphedit_more.png | Bin 250 -> 0 bytes .../theme/dark/graphedit_more.png.import | 34 ---------------- material_maker/theme/dark/graphedit_reset.png | Bin 288 -> 0 bytes .../theme/dark/graphedit_reset.png.import | 34 ---------------- material_maker/theme/dark/graphedit_snap.png | Bin 198 -> 0 bytes .../theme/dark/graphedit_snap.png.import | 34 ---------------- material_maker/theme/dark/graphnode_close.png | Bin 201 -> 0 bytes .../theme/dark/graphnode_close.png.import | 34 ---------------- material_maker/theme/dark/graphnode_port.png | Bin 142 -> 0 bytes .../theme/dark/graphnode_port.png.import | 34 ---------------- .../theme/dark/graphnode_resizer.png | Bin 119 -> 0 bytes .../theme/dark/graphnode_resizer.png.import | 34 ---------------- material_maker/theme/dark/hslider_grabber.png | Bin 296 -> 0 bytes .../theme/dark/hslider_grabber.png.import | 34 ---------------- .../theme/dark/hslider_grabber_disabled.png | Bin 84 -> 0 bytes .../dark/hslider_grabber_disabled.png.import | 34 ---------------- .../theme/dark/hslider_grabber_highlight.png | Bin 310 -> 0 bytes .../dark/hslider_grabber_highlight.png.import | 34 ---------------- material_maker/theme/dark/hslider_tick.png | Bin 84 -> 0 bytes .../theme/dark/hslider_tick.png.import | 34 ---------------- .../theme/dark/hsplitcontainer_grabber.png | Bin 110 -> 0 bytes .../dark/hsplitcontainer_grabber.png.import | 34 ---------------- material_maker/theme/dark/lineedit_clear.png | Bin 201 -> 0 bytes .../theme/dark/lineedit_clear.png.import | 34 ---------------- .../theme/dark/optionbutton_arrow.png | Bin 166 -> 0 bytes .../theme/dark/optionbutton_arrow.png.import | 34 ---------------- .../theme/dark/popupmenu_checked.png | Bin 239 -> 0 bytes .../theme/dark/popupmenu_checked.png.import | 34 ---------------- .../theme/dark/popupmenu_radio_checked.png | Bin 248 -> 0 bytes .../dark/popupmenu_radio_checked.png.import | 34 ---------------- .../theme/dark/popupmenu_radio_unchecked.png | Bin 197 -> 0 bytes .../dark/popupmenu_radio_unchecked.png.import | 34 ---------------- .../theme/dark/popupmenu_submenu.png | Bin 178 -> 0 bytes .../theme/dark/popupmenu_submenu.png.import | 34 ---------------- .../theme/dark/popupmenu_unchecked.png | Bin 141 -> 0 bytes .../theme/dark/popupmenu_unchecked.png.import | 34 ---------------- .../dark/popupmenu_visibility_hidden.png | Bin 236 -> 0 bytes .../popupmenu_visibility_hidden.png.import | 34 ---------------- .../dark/popupmenu_visibility_visible.png | Bin 333 -> 0 bytes .../popupmenu_visibility_visible.png.import | 34 ---------------- .../theme/dark/popupmenu_visibility_xray.png | Bin 362 -> 0 bytes .../dark/popupmenu_visibility_xray.png.import | 34 ---------------- .../theme/dark/sb_checkbox_focus_texture.png | Bin 84 -> 0 bytes .../dark/sb_checkbox_focus_texture.png.import | 34 ---------------- .../sb_colorpickerbutton_disabled_texture.png | Bin 84 -> 0 bytes ...orpickerbutton_disabled_texture.png.import | 34 ---------------- .../sb_colorpickerbutton_focus_texture.png | Bin 84 -> 0 bytes ...colorpickerbutton_focus_texture.png.import | 34 ---------------- ...b_hscrollbar_grabber_highlight_texture.png | Bin 136 -> 0 bytes ...llbar_grabber_highlight_texture.png.import | 34 ---------------- .../sb_hscrollbar_grabber_pressed_texture.png | Bin 133 -> 0 bytes ...rollbar_grabber_pressed_texture.png.import | 34 ---------------- .../dark/sb_hscrollbar_grabber_texture.png | Bin 116 -> 0 bytes .../sb_hscrollbar_grabber_texture.png.import | 34 ---------------- .../sb_hscrollbar_scroll_focus_texture.png | Bin 82 -> 0 bytes ...hscrollbar_scroll_focus_texture.png.import | 34 ---------------- .../dark/sb_hscrollbar_scroll_texture.png | Bin 82 -> 0 bytes .../sb_hscrollbar_scroll_texture.png.import | 34 ---------------- .../theme/dark/sb_hslider_focus_texture.png | Bin 84 -> 0 bytes .../dark/sb_hslider_focus_texture.png.import | 34 ---------------- .../sb_hslider_grabber_disabled_texture.png | Bin 84 -> 0 bytes ...slider_grabber_disabled_texture.png.import | 34 ---------------- .../sb_hslider_grabber_highlight_texture.png | Bin 84 -> 0 bytes ...lider_grabber_highlight_texture.png.import | 34 ---------------- .../dark/sb_hsplitcontainer_bg_texture.png | Bin 84 -> 0 bytes .../sb_hsplitcontainer_bg_texture.png.import | 34 ---------------- .../theme/dark/sb_panel_panelf_texture.png | Bin 84 -> 0 bytes .../dark/sb_panel_panelf_texture.png.import | 34 ---------------- .../theme/dark/sb_panel_panelnc_texture.png | Bin 84 -> 0 bytes .../dark/sb_panel_panelnc_texture.png.import | 34 ---------------- .../sb_popupmenu_panel_disabled_texture.png | Bin 84 -> 0 bytes ...opupmenu_panel_disabled_texture.png.import | 34 ---------------- .../theme/dark/sb_progressbar_bg_texture.png | Bin 131 -> 0 bytes .../dark/sb_progressbar_bg_texture.png.import | 34 ---------------- .../theme/dark/sb_progressbar_fg_texture.png | Bin 109 -> 0 bytes .../dark/sb_progressbar_fg_texture.png.import | 34 ---------------- .../dark/sb_textedit_completion_texture.png | Bin 84 -> 0 bytes .../sb_textedit_completion_texture.png.import | 34 ---------------- ...b_vscrollbar_grabber_highlight_texture.png | Bin 136 -> 0 bytes ...llbar_grabber_highlight_texture.png.import | 34 ---------------- .../sb_vscrollbar_grabber_pressed_texture.png | Bin 133 -> 0 bytes ...rollbar_grabber_pressed_texture.png.import | 34 ---------------- .../dark/sb_vscrollbar_grabber_texture.png | Bin 116 -> 0 bytes .../sb_vscrollbar_grabber_texture.png.import | 34 ---------------- .../sb_vscrollbar_scroll_focus_texture.png | Bin 82 -> 0 bytes ...vscrollbar_scroll_focus_texture.png.import | 34 ---------------- .../dark/sb_vscrollbar_scroll_texture.png | Bin 82 -> 0 bytes .../sb_vscrollbar_scroll_texture.png.import | 34 ---------------- .../dark/sb_vsplitcontainer_bg_texture.png | Bin 85 -> 0 bytes .../sb_vsplitcontainer_bg_texture.png.import | 34 ---------------- .../theme/dark/tabcontainer_decrement.png | Bin 262 -> 0 bytes .../dark/tabcontainer_decrement.png.import | 34 ---------------- .../dark/tabcontainer_decrement_highlight.png | Bin 260 -> 0 bytes ...abcontainer_decrement_highlight.png.import | 34 ---------------- .../theme/dark/tabcontainer_increment.png | Bin 264 -> 0 bytes .../dark/tabcontainer_increment.png.import | 34 ---------------- .../dark/tabcontainer_increment_highlight.png | Bin 266 -> 0 bytes ...abcontainer_increment_highlight.png.import | 34 ---------------- .../theme/dark/tabcontainer_menu.png | Bin 117 -> 0 bytes .../theme/dark/tabcontainer_menu.png.import | 34 ---------------- .../dark/tabcontainer_menu_highlight.png | Bin 129 -> 0 bytes .../tabcontainer_menu_highlight.png.import | 34 ---------------- material_maker/theme/dark/tabs_close.png | Bin 201 -> 0 bytes .../theme/dark/tabs_close.png.import | 34 ---------------- material_maker/theme/dark/tabs_decrement.png | Bin 262 -> 0 bytes .../theme/dark/tabs_decrement.png.import | 34 ---------------- .../theme/dark/tabs_decrement_highlight.png | Bin 260 -> 0 bytes .../dark/tabs_decrement_highlight.png.import | 34 ---------------- material_maker/theme/dark/tabs_increment.png | Bin 264 -> 0 bytes .../theme/dark/tabs_increment.png.import | 34 ---------------- .../theme/dark/tabs_increment_highlight.png | Bin 266 -> 0 bytes .../dark/tabs_increment_highlight.png.import | 34 ---------------- material_maker/theme/dark/textedit_fold.png | Bin 149 -> 0 bytes .../theme/dark/textedit_fold.png.import | 34 ---------------- material_maker/theme/dark/textedit_folded.png | Bin 136 -> 0 bytes .../theme/dark/textedit_folded.png.import | 34 ---------------- material_maker/theme/dark/textedit_space.png | Bin 101 -> 0 bytes .../theme/dark/textedit_space.png.import | 34 ---------------- material_maker/theme/dark/textedit_tab.png | Bin 125 -> 0 bytes .../theme/dark/textedit_tab.png.import | 34 ---------------- material_maker/theme/dark/tree_arrow.png | Bin 149 -> 0 bytes .../theme/dark/tree_arrow.png.import | 34 ---------------- .../theme/dark/tree_arrow_collapsed.png | Bin 136 -> 0 bytes .../dark/tree_arrow_collapsed.png.import | 34 ---------------- material_maker/theme/dark/tree_checked.png | Bin 239 -> 0 bytes .../theme/dark/tree_checked.png.import | 34 ---------------- .../theme/dark/tree_select_arrow.png | Bin 148 -> 0 bytes .../theme/dark/tree_select_arrow.png.import | 34 ---------------- material_maker/theme/dark/tree_unchecked.png | Bin 141 -> 0 bytes .../theme/dark/tree_unchecked.png.import | 34 ---------------- material_maker/theme/dark/tree_updown.png | Bin 175 -> 0 bytes .../theme/dark/tree_updown.png.import | 34 ---------------- material_maker/theme/dark/vslider_grabber.png | Bin 296 -> 0 bytes .../theme/dark/vslider_grabber.png.import | 34 ---------------- .../theme/dark/vslider_grabber_highlight.png | Bin 310 -> 0 bytes .../dark/vslider_grabber_highlight.png.import | 34 ---------------- .../theme/dark/vsplitcontainer_grabber.png | Bin 103 -> 0 bytes .../dark/vsplitcontainer_grabber.png.import | 34 ---------------- .../theme/dark/windowdialog_close.png | Bin 201 -> 0 bytes .../theme/dark/windowdialog_close.png.import | 34 ---------------- .../dark/windowdialog_close_highlight.png | Bin 201 -> 0 bytes .../windowdialog_close_highlight.png.import | 34 ---------------- .../theme/light/checkbox_checked.png | Bin 235 -> 0 bytes .../theme/light/checkbox_checked.png.import | 34 ---------------- .../theme/light/checkbox_radio_checked.png | Bin 255 -> 0 bytes .../light/checkbox_radio_checked.png.import | 34 ---------------- .../theme/light/checkbox_radio_unchecked.png | Bin 200 -> 0 bytes .../light/checkbox_radio_unchecked.png.import | 34 ---------------- .../theme/light/checkbox_unchecked.png | Bin 134 -> 0 bytes .../theme/light/checkbox_unchecked.png.import | 34 ---------------- .../theme/light/checkbutton_off.png | Bin 284 -> 0 bytes .../theme/light/checkbutton_off.png.import | 34 ---------------- .../theme/light/checkbutton_off_disabled.png | Bin 84 -> 0 bytes .../light/checkbutton_off_disabled.png.import | 34 ---------------- material_maker/theme/light/checkbutton_on.png | Bin 322 -> 0 bytes .../theme/light/checkbutton_on.png.import | 34 ---------------- .../theme/light/checkbutton_on_disabled.png | Bin 84 -> 0 bytes .../light/checkbutton_on_disabled.png.import | 34 ---------------- .../theme/light/colorpickerbutton_bg.png | Bin 92 -> 0 bytes .../light/colorpickerbutton_bg.png.import | 34 ---------------- .../theme/light/curve_preset_bevel.tres | 8 ---- .../theme/light/curve_preset_bounce.tres | 8 ---- .../theme/light/curve_preset_easein.tres | 8 ---- .../theme/light/curve_preset_easeinout.tres | 8 ---- .../theme/light/curve_preset_easeout.tres | 8 ---- .../theme/light/curve_preset_linear.tres | 8 ---- .../theme/light/curve_preset_sawtooth.tres | 8 ---- material_maker/theme/light/curve_presets.svg | 13 ------ .../theme/light/curve_presets.svg.import | 37 ------------------ .../theme/light/graphedit_minus.png | Bin 249 -> 0 bytes .../theme/light/graphedit_minus.png.import | 34 ---------------- material_maker/theme/light/graphedit_more.png | Bin 250 -> 0 bytes .../theme/light/graphedit_more.png.import | 34 ---------------- .../theme/light/graphedit_reset.png | Bin 288 -> 0 bytes .../theme/light/graphedit_reset.png.import | 34 ---------------- material_maker/theme/light/graphedit_snap.png | Bin 211 -> 0 bytes .../theme/light/graphedit_snap.png.import | 34 ---------------- .../theme/light/graphnode_close.png | Bin 201 -> 0 bytes .../theme/light/graphnode_close.png.import | 34 ---------------- material_maker/theme/light/graphnode_port.png | Bin 142 -> 0 bytes .../theme/light/graphnode_port.png.import | 34 ---------------- .../theme/light/graphnode_resizer.png | Bin 119 -> 0 bytes .../theme/light/graphnode_resizer.png.import | 34 ---------------- .../theme/light/hslider_grabber.png | Bin 299 -> 0 bytes .../theme/light/hslider_grabber.png.import | 34 ---------------- .../theme/light/hslider_grabber_disabled.png | Bin 84 -> 0 bytes .../light/hslider_grabber_disabled.png.import | 34 ---------------- .../theme/light/hslider_grabber_highlight.png | Bin 334 -> 0 bytes .../hslider_grabber_highlight.png.import | 34 ---------------- material_maker/theme/light/hslider_tick.png | Bin 84 -> 0 bytes .../theme/light/hslider_tick.png.import | 34 ---------------- .../theme/light/hsplitcontainer_grabber.png | Bin 113 -> 0 bytes .../light/hsplitcontainer_grabber.png.import | 34 ---------------- material_maker/theme/light/lineedit_clear.png | Bin 232 -> 0 bytes .../theme/light/lineedit_clear.png.import | 34 ---------------- .../theme/light/optionbutton_arrow.png | Bin 176 -> 0 bytes .../theme/light/optionbutton_arrow.png.import | 34 ---------------- .../theme/light/popupmenu_checked.png | Bin 235 -> 0 bytes .../theme/light/popupmenu_checked.png.import | 34 ---------------- .../theme/light/popupmenu_radio_checked.png | Bin 255 -> 0 bytes .../light/popupmenu_radio_checked.png.import | 34 ---------------- .../theme/light/popupmenu_radio_unchecked.png | Bin 200 -> 0 bytes .../popupmenu_radio_unchecked.png.import | 34 ---------------- .../theme/light/popupmenu_submenu.png | Bin 172 -> 0 bytes .../theme/light/popupmenu_submenu.png.import | 34 ---------------- .../theme/light/popupmenu_unchecked.png | Bin 134 -> 0 bytes .../light/popupmenu_unchecked.png.import | 34 ---------------- .../light/popupmenu_visibility_hidden.png | Bin 242 -> 0 bytes .../popupmenu_visibility_hidden.png.import | 34 ---------------- .../light/popupmenu_visibility_visible.png | Bin 328 -> 0 bytes .../popupmenu_visibility_visible.png.import | 34 ---------------- .../theme/light/popupmenu_visibility_xray.png | Bin 342 -> 0 bytes .../popupmenu_visibility_xray.png.import | 34 ---------------- .../theme/light/sb_checkbox_focus_texture.png | Bin 84 -> 0 bytes .../sb_checkbox_focus_texture.png.import | 34 ---------------- .../sb_colorpickerbutton_disabled_texture.png | Bin 84 -> 0 bytes ...orpickerbutton_disabled_texture.png.import | 34 ---------------- .../sb_colorpickerbutton_focus_texture.png | Bin 84 -> 0 bytes ...colorpickerbutton_focus_texture.png.import | 34 ---------------- ...b_hscrollbar_grabber_highlight_texture.png | Bin 138 -> 0 bytes ...llbar_grabber_highlight_texture.png.import | 34 ---------------- .../sb_hscrollbar_grabber_pressed_texture.png | Bin 133 -> 0 bytes ...rollbar_grabber_pressed_texture.png.import | 34 ---------------- .../light/sb_hscrollbar_grabber_texture.png | Bin 123 -> 0 bytes .../sb_hscrollbar_grabber_texture.png.import | 34 ---------------- .../sb_hscrollbar_scroll_focus_texture.png | Bin 82 -> 0 bytes ...hscrollbar_scroll_focus_texture.png.import | 34 ---------------- .../light/sb_hscrollbar_scroll_texture.png | Bin 82 -> 0 bytes .../sb_hscrollbar_scroll_texture.png.import | 34 ---------------- .../theme/light/sb_hslider_focus_texture.png | Bin 84 -> 0 bytes .../light/sb_hslider_focus_texture.png.import | 34 ---------------- .../sb_hslider_grabber_disabled_texture.png | Bin 84 -> 0 bytes ...slider_grabber_disabled_texture.png.import | 34 ---------------- .../sb_hslider_grabber_highlight_texture.png | Bin 84 -> 0 bytes ...lider_grabber_highlight_texture.png.import | 34 ---------------- .../light/sb_hsplitcontainer_bg_texture.png | Bin 84 -> 0 bytes .../sb_hsplitcontainer_bg_texture.png.import | 34 ---------------- .../theme/light/sb_panel_panelf_texture.png | Bin 84 -> 0 bytes .../light/sb_panel_panelf_texture.png.import | 34 ---------------- .../theme/light/sb_panel_panelnc_texture.png | Bin 84 -> 0 bytes .../light/sb_panel_panelnc_texture.png.import | 34 ---------------- .../sb_popupmenu_panel_disabled_texture.png | Bin 84 -> 0 bytes ...opupmenu_panel_disabled_texture.png.import | 34 ---------------- .../theme/light/sb_progressbar_bg_texture.png | Bin 130 -> 0 bytes .../sb_progressbar_bg_texture.png.import | 34 ---------------- .../theme/light/sb_progressbar_fg_texture.png | Bin 114 -> 0 bytes .../sb_progressbar_fg_texture.png.import | 34 ---------------- .../light/sb_textedit_completion_texture.png | Bin 84 -> 0 bytes .../sb_textedit_completion_texture.png.import | 34 ---------------- ...b_vscrollbar_grabber_highlight_texture.png | Bin 138 -> 0 bytes ...llbar_grabber_highlight_texture.png.import | 34 ---------------- .../sb_vscrollbar_grabber_pressed_texture.png | Bin 133 -> 0 bytes ...rollbar_grabber_pressed_texture.png.import | 34 ---------------- .../light/sb_vscrollbar_grabber_texture.png | Bin 123 -> 0 bytes .../sb_vscrollbar_grabber_texture.png.import | 34 ---------------- .../sb_vscrollbar_scroll_focus_texture.png | Bin 82 -> 0 bytes ...vscrollbar_scroll_focus_texture.png.import | 34 ---------------- .../light/sb_vscrollbar_scroll_texture.png | Bin 82 -> 0 bytes .../sb_vscrollbar_scroll_texture.png.import | 34 ---------------- .../light/sb_vsplitcontainer_bg_texture.png | Bin 85 -> 0 bytes .../sb_vsplitcontainer_bg_texture.png.import | 34 ---------------- .../theme/light/tabcontainer_decrement.png | Bin 250 -> 0 bytes .../light/tabcontainer_decrement.png.import | 34 ---------------- .../tabcontainer_decrement_highlight.png | Bin 259 -> 0 bytes ...abcontainer_decrement_highlight.png.import | 34 ---------------- .../theme/light/tabcontainer_increment.png | Bin 248 -> 0 bytes .../light/tabcontainer_increment.png.import | 34 ---------------- .../tabcontainer_increment_highlight.png | Bin 262 -> 0 bytes ...abcontainer_increment_highlight.png.import | 34 ---------------- .../theme/light/tabcontainer_menu.png | Bin 122 -> 0 bytes .../theme/light/tabcontainer_menu.png.import | 34 ---------------- .../light/tabcontainer_menu_highlight.png | Bin 133 -> 0 bytes .../tabcontainer_menu_highlight.png.import | 34 ---------------- material_maker/theme/light/tabs_close.png | Bin 232 -> 0 bytes .../theme/light/tabs_close.png.import | 34 ---------------- material_maker/theme/light/tabs_decrement.png | Bin 250 -> 0 bytes .../theme/light/tabs_decrement.png.import | 34 ---------------- .../theme/light/tabs_decrement_highlight.png | Bin 259 -> 0 bytes .../light/tabs_decrement_highlight.png.import | 34 ---------------- material_maker/theme/light/tabs_increment.png | Bin 248 -> 0 bytes .../theme/light/tabs_increment.png.import | 34 ---------------- .../theme/light/tabs_increment_highlight.png | Bin 262 -> 0 bytes .../light/tabs_increment_highlight.png.import | 34 ---------------- material_maker/theme/light/textedit_fold.png | Bin 156 -> 0 bytes .../theme/light/textedit_fold.png.import | 34 ---------------- .../theme/light/textedit_folded.png | Bin 152 -> 0 bytes .../theme/light/textedit_folded.png.import | 34 ---------------- material_maker/theme/light/textedit_space.png | Bin 100 -> 0 bytes .../theme/light/textedit_space.png.import | 34 ---------------- material_maker/theme/light/textedit_tab.png | Bin 149 -> 0 bytes .../theme/light/textedit_tab.png.import | 34 ---------------- material_maker/theme/light/tree_arrow.png | Bin 156 -> 0 bytes .../theme/light/tree_arrow.png.import | 34 ---------------- .../theme/light/tree_arrow_collapsed.png | Bin 152 -> 0 bytes .../light/tree_arrow_collapsed.png.import | 34 ---------------- material_maker/theme/light/tree_checked.png | Bin 235 -> 0 bytes .../theme/light/tree_checked.png.import | 34 ---------------- .../theme/light/tree_select_arrow.png | Bin 162 -> 0 bytes .../theme/light/tree_select_arrow.png.import | 34 ---------------- material_maker/theme/light/tree_unchecked.png | Bin 134 -> 0 bytes .../theme/light/tree_unchecked.png.import | 34 ---------------- material_maker/theme/light/tree_updown.png | Bin 205 -> 0 bytes .../theme/light/tree_updown.png.import | 34 ---------------- .../theme/light/vslider_grabber.png | Bin 299 -> 0 bytes .../theme/light/vslider_grabber.png.import | 34 ---------------- .../theme/light/vslider_grabber_highlight.png | Bin 334 -> 0 bytes .../vslider_grabber_highlight.png.import | 34 ---------------- .../theme/light/vsplitcontainer_grabber.png | Bin 107 -> 0 bytes .../light/vsplitcontainer_grabber.png.import | 34 ---------------- .../theme/light/windowdialog_close.png | Bin 232 -> 0 bytes .../theme/light/windowdialog_close.png.import | 34 ---------------- .../light/windowdialog_close_highlight.png | Bin 232 -> 0 bytes .../windowdialog_close_highlight.png.import | 34 ---------------- 342 files changed, 5720 deletions(-) delete mode 100644 material_maker/theme/dark/checkbox_checked.png delete mode 100644 material_maker/theme/dark/checkbox_checked.png.import delete mode 100644 material_maker/theme/dark/checkbox_radio_checked.png delete mode 100644 material_maker/theme/dark/checkbox_radio_checked.png.import delete mode 100644 material_maker/theme/dark/checkbox_radio_unchecked.png delete mode 100644 material_maker/theme/dark/checkbox_radio_unchecked.png.import delete mode 100644 material_maker/theme/dark/checkbox_unchecked.png delete mode 100644 material_maker/theme/dark/checkbox_unchecked.png.import delete mode 100644 material_maker/theme/dark/checkbutton_off.png delete mode 100644 material_maker/theme/dark/checkbutton_off.png.import delete mode 100644 material_maker/theme/dark/checkbutton_off_disabled.png delete mode 100644 material_maker/theme/dark/checkbutton_off_disabled.png.import delete mode 100644 material_maker/theme/dark/checkbutton_on.png delete mode 100644 material_maker/theme/dark/checkbutton_on.png.import delete mode 100644 material_maker/theme/dark/checkbutton_on_disabled.png delete mode 100644 material_maker/theme/dark/checkbutton_on_disabled.png.import delete mode 100644 material_maker/theme/dark/colorpickerbutton_bg.png delete mode 100644 material_maker/theme/dark/colorpickerbutton_bg.png.import delete mode 100644 material_maker/theme/dark/curve_preset_bevel.tres delete mode 100644 material_maker/theme/dark/curve_preset_bounce.tres delete mode 100644 material_maker/theme/dark/curve_preset_easein.tres delete mode 100644 material_maker/theme/dark/curve_preset_easeinout.tres delete mode 100644 material_maker/theme/dark/curve_preset_easeout.tres delete mode 100644 material_maker/theme/dark/curve_preset_linear.tres delete mode 100644 material_maker/theme/dark/curve_preset_sawtooth.tres delete mode 100644 material_maker/theme/dark/curve_presets.svg delete mode 100644 material_maker/theme/dark/curve_presets.svg.import delete mode 100644 material_maker/theme/dark/graphedit_minus.png delete mode 100644 material_maker/theme/dark/graphedit_minus.png.import delete mode 100644 material_maker/theme/dark/graphedit_more.png delete mode 100644 material_maker/theme/dark/graphedit_more.png.import delete mode 100644 material_maker/theme/dark/graphedit_reset.png delete mode 100644 material_maker/theme/dark/graphedit_reset.png.import delete mode 100644 material_maker/theme/dark/graphedit_snap.png delete mode 100644 material_maker/theme/dark/graphedit_snap.png.import delete mode 100644 material_maker/theme/dark/graphnode_close.png delete mode 100644 material_maker/theme/dark/graphnode_close.png.import delete mode 100644 material_maker/theme/dark/graphnode_port.png delete mode 100644 material_maker/theme/dark/graphnode_port.png.import delete mode 100644 material_maker/theme/dark/graphnode_resizer.png delete mode 100644 material_maker/theme/dark/graphnode_resizer.png.import delete mode 100644 material_maker/theme/dark/hslider_grabber.png delete mode 100644 material_maker/theme/dark/hslider_grabber.png.import delete mode 100644 material_maker/theme/dark/hslider_grabber_disabled.png delete mode 100644 material_maker/theme/dark/hslider_grabber_disabled.png.import delete mode 100644 material_maker/theme/dark/hslider_grabber_highlight.png delete mode 100644 material_maker/theme/dark/hslider_grabber_highlight.png.import delete mode 100644 material_maker/theme/dark/hslider_tick.png delete mode 100644 material_maker/theme/dark/hslider_tick.png.import delete mode 100644 material_maker/theme/dark/hsplitcontainer_grabber.png delete mode 100644 material_maker/theme/dark/hsplitcontainer_grabber.png.import delete mode 100644 material_maker/theme/dark/lineedit_clear.png delete mode 100644 material_maker/theme/dark/lineedit_clear.png.import delete mode 100644 material_maker/theme/dark/optionbutton_arrow.png delete mode 100644 material_maker/theme/dark/optionbutton_arrow.png.import delete mode 100644 material_maker/theme/dark/popupmenu_checked.png delete mode 100644 material_maker/theme/dark/popupmenu_checked.png.import delete mode 100644 material_maker/theme/dark/popupmenu_radio_checked.png delete mode 100644 material_maker/theme/dark/popupmenu_radio_checked.png.import delete mode 100644 material_maker/theme/dark/popupmenu_radio_unchecked.png delete mode 100644 material_maker/theme/dark/popupmenu_radio_unchecked.png.import delete mode 100644 material_maker/theme/dark/popupmenu_submenu.png delete mode 100644 material_maker/theme/dark/popupmenu_submenu.png.import delete mode 100644 material_maker/theme/dark/popupmenu_unchecked.png delete mode 100644 material_maker/theme/dark/popupmenu_unchecked.png.import delete mode 100644 material_maker/theme/dark/popupmenu_visibility_hidden.png delete mode 100644 material_maker/theme/dark/popupmenu_visibility_hidden.png.import delete mode 100644 material_maker/theme/dark/popupmenu_visibility_visible.png delete mode 100644 material_maker/theme/dark/popupmenu_visibility_visible.png.import delete mode 100644 material_maker/theme/dark/popupmenu_visibility_xray.png delete mode 100644 material_maker/theme/dark/popupmenu_visibility_xray.png.import delete mode 100644 material_maker/theme/dark/sb_checkbox_focus_texture.png delete mode 100644 material_maker/theme/dark/sb_checkbox_focus_texture.png.import delete mode 100644 material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png delete mode 100644 material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png.import delete mode 100644 material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png delete mode 100644 material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_texture.png delete mode 100644 material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png delete mode 100644 material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hscrollbar_scroll_texture.png delete mode 100644 material_maker/theme/dark/sb_hscrollbar_scroll_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hslider_focus_texture.png delete mode 100644 material_maker/theme/dark/sb_hslider_focus_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png delete mode 100644 material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png delete mode 100644 material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png delete mode 100644 material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png.import delete mode 100644 material_maker/theme/dark/sb_panel_panelf_texture.png delete mode 100644 material_maker/theme/dark/sb_panel_panelf_texture.png.import delete mode 100644 material_maker/theme/dark/sb_panel_panelnc_texture.png delete mode 100644 material_maker/theme/dark/sb_panel_panelnc_texture.png.import delete mode 100644 material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png delete mode 100644 material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png.import delete mode 100644 material_maker/theme/dark/sb_progressbar_bg_texture.png delete mode 100644 material_maker/theme/dark/sb_progressbar_bg_texture.png.import delete mode 100644 material_maker/theme/dark/sb_progressbar_fg_texture.png delete mode 100644 material_maker/theme/dark/sb_progressbar_fg_texture.png.import delete mode 100644 material_maker/theme/dark/sb_textedit_completion_texture.png delete mode 100644 material_maker/theme/dark/sb_textedit_completion_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_texture.png delete mode 100644 material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png delete mode 100644 material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vscrollbar_scroll_texture.png delete mode 100644 material_maker/theme/dark/sb_vscrollbar_scroll_texture.png.import delete mode 100644 material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png delete mode 100644 material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_decrement.png delete mode 100644 material_maker/theme/dark/tabcontainer_decrement.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_decrement_highlight.png delete mode 100644 material_maker/theme/dark/tabcontainer_decrement_highlight.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_increment.png delete mode 100644 material_maker/theme/dark/tabcontainer_increment.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_increment_highlight.png delete mode 100644 material_maker/theme/dark/tabcontainer_increment_highlight.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_menu.png delete mode 100644 material_maker/theme/dark/tabcontainer_menu.png.import delete mode 100644 material_maker/theme/dark/tabcontainer_menu_highlight.png delete mode 100644 material_maker/theme/dark/tabcontainer_menu_highlight.png.import delete mode 100644 material_maker/theme/dark/tabs_close.png delete mode 100644 material_maker/theme/dark/tabs_close.png.import delete mode 100644 material_maker/theme/dark/tabs_decrement.png delete mode 100644 material_maker/theme/dark/tabs_decrement.png.import delete mode 100644 material_maker/theme/dark/tabs_decrement_highlight.png delete mode 100644 material_maker/theme/dark/tabs_decrement_highlight.png.import delete mode 100644 material_maker/theme/dark/tabs_increment.png delete mode 100644 material_maker/theme/dark/tabs_increment.png.import delete mode 100644 material_maker/theme/dark/tabs_increment_highlight.png delete mode 100644 material_maker/theme/dark/tabs_increment_highlight.png.import delete mode 100644 material_maker/theme/dark/textedit_fold.png delete mode 100644 material_maker/theme/dark/textedit_fold.png.import delete mode 100644 material_maker/theme/dark/textedit_folded.png delete mode 100644 material_maker/theme/dark/textedit_folded.png.import delete mode 100644 material_maker/theme/dark/textedit_space.png delete mode 100644 material_maker/theme/dark/textedit_space.png.import delete mode 100644 material_maker/theme/dark/textedit_tab.png delete mode 100644 material_maker/theme/dark/textedit_tab.png.import delete mode 100644 material_maker/theme/dark/tree_arrow.png delete mode 100644 material_maker/theme/dark/tree_arrow.png.import delete mode 100644 material_maker/theme/dark/tree_arrow_collapsed.png delete mode 100644 material_maker/theme/dark/tree_arrow_collapsed.png.import delete mode 100644 material_maker/theme/dark/tree_checked.png delete mode 100644 material_maker/theme/dark/tree_checked.png.import delete mode 100644 material_maker/theme/dark/tree_select_arrow.png delete mode 100644 material_maker/theme/dark/tree_select_arrow.png.import delete mode 100644 material_maker/theme/dark/tree_unchecked.png delete mode 100644 material_maker/theme/dark/tree_unchecked.png.import delete mode 100644 material_maker/theme/dark/tree_updown.png delete mode 100644 material_maker/theme/dark/tree_updown.png.import delete mode 100644 material_maker/theme/dark/vslider_grabber.png delete mode 100644 material_maker/theme/dark/vslider_grabber.png.import delete mode 100644 material_maker/theme/dark/vslider_grabber_highlight.png delete mode 100644 material_maker/theme/dark/vslider_grabber_highlight.png.import delete mode 100644 material_maker/theme/dark/vsplitcontainer_grabber.png delete mode 100644 material_maker/theme/dark/vsplitcontainer_grabber.png.import delete mode 100644 material_maker/theme/dark/windowdialog_close.png delete mode 100644 material_maker/theme/dark/windowdialog_close.png.import delete mode 100644 material_maker/theme/dark/windowdialog_close_highlight.png delete mode 100644 material_maker/theme/dark/windowdialog_close_highlight.png.import delete mode 100644 material_maker/theme/light/checkbox_checked.png delete mode 100644 material_maker/theme/light/checkbox_checked.png.import delete mode 100644 material_maker/theme/light/checkbox_radio_checked.png delete mode 100644 material_maker/theme/light/checkbox_radio_checked.png.import delete mode 100644 material_maker/theme/light/checkbox_radio_unchecked.png delete mode 100644 material_maker/theme/light/checkbox_radio_unchecked.png.import delete mode 100644 material_maker/theme/light/checkbox_unchecked.png delete mode 100644 material_maker/theme/light/checkbox_unchecked.png.import delete mode 100644 material_maker/theme/light/checkbutton_off.png delete mode 100644 material_maker/theme/light/checkbutton_off.png.import delete mode 100644 material_maker/theme/light/checkbutton_off_disabled.png delete mode 100644 material_maker/theme/light/checkbutton_off_disabled.png.import delete mode 100644 material_maker/theme/light/checkbutton_on.png delete mode 100644 material_maker/theme/light/checkbutton_on.png.import delete mode 100644 material_maker/theme/light/checkbutton_on_disabled.png delete mode 100644 material_maker/theme/light/checkbutton_on_disabled.png.import delete mode 100644 material_maker/theme/light/colorpickerbutton_bg.png delete mode 100644 material_maker/theme/light/colorpickerbutton_bg.png.import delete mode 100644 material_maker/theme/light/curve_preset_bevel.tres delete mode 100644 material_maker/theme/light/curve_preset_bounce.tres delete mode 100644 material_maker/theme/light/curve_preset_easein.tres delete mode 100644 material_maker/theme/light/curve_preset_easeinout.tres delete mode 100644 material_maker/theme/light/curve_preset_easeout.tres delete mode 100644 material_maker/theme/light/curve_preset_linear.tres delete mode 100644 material_maker/theme/light/curve_preset_sawtooth.tres delete mode 100644 material_maker/theme/light/curve_presets.svg delete mode 100644 material_maker/theme/light/curve_presets.svg.import delete mode 100644 material_maker/theme/light/graphedit_minus.png delete mode 100644 material_maker/theme/light/graphedit_minus.png.import delete mode 100644 material_maker/theme/light/graphedit_more.png delete mode 100644 material_maker/theme/light/graphedit_more.png.import delete mode 100644 material_maker/theme/light/graphedit_reset.png delete mode 100644 material_maker/theme/light/graphedit_reset.png.import delete mode 100644 material_maker/theme/light/graphedit_snap.png delete mode 100644 material_maker/theme/light/graphedit_snap.png.import delete mode 100644 material_maker/theme/light/graphnode_close.png delete mode 100644 material_maker/theme/light/graphnode_close.png.import delete mode 100644 material_maker/theme/light/graphnode_port.png delete mode 100644 material_maker/theme/light/graphnode_port.png.import delete mode 100644 material_maker/theme/light/graphnode_resizer.png delete mode 100644 material_maker/theme/light/graphnode_resizer.png.import delete mode 100644 material_maker/theme/light/hslider_grabber.png delete mode 100644 material_maker/theme/light/hslider_grabber.png.import delete mode 100644 material_maker/theme/light/hslider_grabber_disabled.png delete mode 100644 material_maker/theme/light/hslider_grabber_disabled.png.import delete mode 100644 material_maker/theme/light/hslider_grabber_highlight.png delete mode 100644 material_maker/theme/light/hslider_grabber_highlight.png.import delete mode 100644 material_maker/theme/light/hslider_tick.png delete mode 100644 material_maker/theme/light/hslider_tick.png.import delete mode 100644 material_maker/theme/light/hsplitcontainer_grabber.png delete mode 100644 material_maker/theme/light/hsplitcontainer_grabber.png.import delete mode 100644 material_maker/theme/light/lineedit_clear.png delete mode 100644 material_maker/theme/light/lineedit_clear.png.import delete mode 100644 material_maker/theme/light/optionbutton_arrow.png delete mode 100644 material_maker/theme/light/optionbutton_arrow.png.import delete mode 100644 material_maker/theme/light/popupmenu_checked.png delete mode 100644 material_maker/theme/light/popupmenu_checked.png.import delete mode 100644 material_maker/theme/light/popupmenu_radio_checked.png delete mode 100644 material_maker/theme/light/popupmenu_radio_checked.png.import delete mode 100644 material_maker/theme/light/popupmenu_radio_unchecked.png delete mode 100644 material_maker/theme/light/popupmenu_radio_unchecked.png.import delete mode 100644 material_maker/theme/light/popupmenu_submenu.png delete mode 100644 material_maker/theme/light/popupmenu_submenu.png.import delete mode 100644 material_maker/theme/light/popupmenu_unchecked.png delete mode 100644 material_maker/theme/light/popupmenu_unchecked.png.import delete mode 100644 material_maker/theme/light/popupmenu_visibility_hidden.png delete mode 100644 material_maker/theme/light/popupmenu_visibility_hidden.png.import delete mode 100644 material_maker/theme/light/popupmenu_visibility_visible.png delete mode 100644 material_maker/theme/light/popupmenu_visibility_visible.png.import delete mode 100644 material_maker/theme/light/popupmenu_visibility_xray.png delete mode 100644 material_maker/theme/light/popupmenu_visibility_xray.png.import delete mode 100644 material_maker/theme/light/sb_checkbox_focus_texture.png delete mode 100644 material_maker/theme/light/sb_checkbox_focus_texture.png.import delete mode 100644 material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png delete mode 100644 material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png.import delete mode 100644 material_maker/theme/light/sb_colorpickerbutton_focus_texture.png delete mode 100644 material_maker/theme/light/sb_colorpickerbutton_focus_texture.png.import delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png.import delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_texture.png delete mode 100644 material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import delete mode 100644 material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png delete mode 100644 material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png.import delete mode 100644 material_maker/theme/light/sb_hscrollbar_scroll_texture.png delete mode 100644 material_maker/theme/light/sb_hscrollbar_scroll_texture.png.import delete mode 100644 material_maker/theme/light/sb_hslider_focus_texture.png delete mode 100644 material_maker/theme/light/sb_hslider_focus_texture.png.import delete mode 100644 material_maker/theme/light/sb_hslider_grabber_disabled_texture.png delete mode 100644 material_maker/theme/light/sb_hslider_grabber_disabled_texture.png.import delete mode 100644 material_maker/theme/light/sb_hslider_grabber_highlight_texture.png delete mode 100644 material_maker/theme/light/sb_hslider_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/light/sb_hsplitcontainer_bg_texture.png delete mode 100644 material_maker/theme/light/sb_hsplitcontainer_bg_texture.png.import delete mode 100644 material_maker/theme/light/sb_panel_panelf_texture.png delete mode 100644 material_maker/theme/light/sb_panel_panelf_texture.png.import delete mode 100644 material_maker/theme/light/sb_panel_panelnc_texture.png delete mode 100644 material_maker/theme/light/sb_panel_panelnc_texture.png.import delete mode 100644 material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png delete mode 100644 material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png.import delete mode 100644 material_maker/theme/light/sb_progressbar_bg_texture.png delete mode 100644 material_maker/theme/light/sb_progressbar_bg_texture.png.import delete mode 100644 material_maker/theme/light/sb_progressbar_fg_texture.png delete mode 100644 material_maker/theme/light/sb_progressbar_fg_texture.png.import delete mode 100644 material_maker/theme/light/sb_textedit_completion_texture.png delete mode 100644 material_maker/theme/light/sb_textedit_completion_texture.png.import delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png.import delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png.import delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_texture.png delete mode 100644 material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import delete mode 100644 material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png delete mode 100644 material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png.import delete mode 100644 material_maker/theme/light/sb_vscrollbar_scroll_texture.png delete mode 100644 material_maker/theme/light/sb_vscrollbar_scroll_texture.png.import delete mode 100644 material_maker/theme/light/sb_vsplitcontainer_bg_texture.png delete mode 100644 material_maker/theme/light/sb_vsplitcontainer_bg_texture.png.import delete mode 100644 material_maker/theme/light/tabcontainer_decrement.png delete mode 100644 material_maker/theme/light/tabcontainer_decrement.png.import delete mode 100644 material_maker/theme/light/tabcontainer_decrement_highlight.png delete mode 100644 material_maker/theme/light/tabcontainer_decrement_highlight.png.import delete mode 100644 material_maker/theme/light/tabcontainer_increment.png delete mode 100644 material_maker/theme/light/tabcontainer_increment.png.import delete mode 100644 material_maker/theme/light/tabcontainer_increment_highlight.png delete mode 100644 material_maker/theme/light/tabcontainer_increment_highlight.png.import delete mode 100644 material_maker/theme/light/tabcontainer_menu.png delete mode 100644 material_maker/theme/light/tabcontainer_menu.png.import delete mode 100644 material_maker/theme/light/tabcontainer_menu_highlight.png delete mode 100644 material_maker/theme/light/tabcontainer_menu_highlight.png.import delete mode 100644 material_maker/theme/light/tabs_close.png delete mode 100644 material_maker/theme/light/tabs_close.png.import delete mode 100644 material_maker/theme/light/tabs_decrement.png delete mode 100644 material_maker/theme/light/tabs_decrement.png.import delete mode 100644 material_maker/theme/light/tabs_decrement_highlight.png delete mode 100644 material_maker/theme/light/tabs_decrement_highlight.png.import delete mode 100644 material_maker/theme/light/tabs_increment.png delete mode 100644 material_maker/theme/light/tabs_increment.png.import delete mode 100644 material_maker/theme/light/tabs_increment_highlight.png delete mode 100644 material_maker/theme/light/tabs_increment_highlight.png.import delete mode 100644 material_maker/theme/light/textedit_fold.png delete mode 100644 material_maker/theme/light/textedit_fold.png.import delete mode 100644 material_maker/theme/light/textedit_folded.png delete mode 100644 material_maker/theme/light/textedit_folded.png.import delete mode 100644 material_maker/theme/light/textedit_space.png delete mode 100644 material_maker/theme/light/textedit_space.png.import delete mode 100644 material_maker/theme/light/textedit_tab.png delete mode 100644 material_maker/theme/light/textedit_tab.png.import delete mode 100644 material_maker/theme/light/tree_arrow.png delete mode 100644 material_maker/theme/light/tree_arrow.png.import delete mode 100644 material_maker/theme/light/tree_arrow_collapsed.png delete mode 100644 material_maker/theme/light/tree_arrow_collapsed.png.import delete mode 100644 material_maker/theme/light/tree_checked.png delete mode 100644 material_maker/theme/light/tree_checked.png.import delete mode 100644 material_maker/theme/light/tree_select_arrow.png delete mode 100644 material_maker/theme/light/tree_select_arrow.png.import delete mode 100644 material_maker/theme/light/tree_unchecked.png delete mode 100644 material_maker/theme/light/tree_unchecked.png.import delete mode 100644 material_maker/theme/light/tree_updown.png delete mode 100644 material_maker/theme/light/tree_updown.png.import delete mode 100644 material_maker/theme/light/vslider_grabber.png delete mode 100644 material_maker/theme/light/vslider_grabber.png.import delete mode 100644 material_maker/theme/light/vslider_grabber_highlight.png delete mode 100644 material_maker/theme/light/vslider_grabber_highlight.png.import delete mode 100644 material_maker/theme/light/vsplitcontainer_grabber.png delete mode 100644 material_maker/theme/light/vsplitcontainer_grabber.png.import delete mode 100644 material_maker/theme/light/windowdialog_close.png delete mode 100644 material_maker/theme/light/windowdialog_close.png.import delete mode 100644 material_maker/theme/light/windowdialog_close_highlight.png delete mode 100644 material_maker/theme/light/windowdialog_close_highlight.png.import diff --git a/material_maker/theme/dark/checkbox_checked.png b/material_maker/theme/dark/checkbox_checked.png deleted file mode 100644 index 3c6e5a6c7068a54fcfcae16aeed796e8411436d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`tn_qo45_%4 z%+Q$AR^!7V(%N)XW_!r{m&u2sS9M!9T(acZzVOnF58JZ%m@llTu9^{4o_kmhSJHqPmLH-F}Y!{fsFh*2; zZhro~X2GTQ#7i8)GVkq~y!Nnp%Qt#1-gWTp!NctT1D9TueOdMY;oij@nJr8%4wiR~ mojn|xyAlF~`*fNv@-md}{${zxJ6s;k44ofy`glX(f`Z1Qw*45_%4 z;C)1oPS@x``7oYdXn<_ z0-L{kTbr8Bu^FfRD-Ag9v3|<3oR2R~nE7TG8{b{oXL42BG4y*|#JVEIPb%R}ld>*s z%6qCezstItW!7t}Q*P7dcCx)mGU_`atn$FZ{a|6&$zOU8z65^AY7!HyS4!%Z@Y=V( vS^Eb=xk_Tb5TC{&M_$uZ$-Wax5_cKG#2)chpU8*-x}L$))z4*}Q$iB}NpEAP diff --git a/material_maker/theme/dark/checkbox_radio_checked.png.import b/material_maker/theme/dark/checkbox_radio_checked.png.import deleted file mode 100644 index 08dc8f8bb..000000000 --- a/material_maker/theme/dark/checkbox_radio_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://d0jps0u7dybnk" -path="res://.godot/imported/checkbox_radio_checked.png-a6cb92213981a71c047ca59b5fa98b31.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/checkbox_radio_checked.png" -dest_files=["res://.godot/imported/checkbox_radio_checked.png-a6cb92213981a71c047ca59b5fa98b31.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/checkbox_radio_unchecked.png b/material_maker/theme/dark/checkbox_radio_unchecked.png deleted file mode 100644 index cddf3aa8ac10735ea20d48c815d98f10c5d51492..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`)O)%(hE&{Y z@juGQ?8q_a#C(0xH|p+p)~N%X!rk44ofy`glX(f`xO=)dhE&{2 zW@yZ5tMTCwX>B?xvpwYf%j84RtGX>4E?M$yUwCQ8hizGW%okQvSM3nFbNMv8_J!lT n?p;hxjIIVNINik#zF=bzDtWNcGPx#+(|@1RCwBBpgkA`ISlzE!W?|YDKNA$-W9klcTe-4?md0tAW)^|ZMnMwt&9rT zj5KA~!h1&(sEjOlM{^6WDY}tn40ps~3dlBC+zi=BBZiAY5Q)19_fI|e^5Dz;Q+E?c zH};~C5yH>~tk6)L^x*G<|4{h%-b9j()m^{}HPV9No;bvn5F-)BlHpo$3y7h440qK) z0{2fs3`4;CCrLH*u38@4P#v(LUoZ^)Lb9Pcv@w(>-iJq&1l1x+!h%4OnnX^LqDA7T oK{lm9fkN}5kMcsA_FxnM0E48eR2pw*pa1{>07*qoM6N<$g7wmP$p8QV diff --git a/material_maker/theme/dark/checkbutton_off.png.import b/material_maker/theme/dark/checkbutton_off.png.import deleted file mode 100644 index 0edf0d864..000000000 --- a/material_maker/theme/dark/checkbutton_off.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://ur8ohwwy2se0" -path="res://.godot/imported/checkbutton_off.png-bc6bba9c7849ecc66337bdfbb3ab2d88.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/checkbutton_off.png" -dest_files=["res://.godot/imported/checkbutton_off.png-bc6bba9c7849ecc66337bdfbb3ab2d88.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/checkbutton_off_disabled.png b/material_maker/theme/dark/checkbutton_off_disabled.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGP)Px#_(?=TRCwC$lp&0RKoCX8R5kSi@6J>-tZaR~s83qeBCnL=Yx4x9^fd>1ODIu-i9s|aK;rk|D1|53h3f(4lsd$ z^i0gnydh4{;pl7=+ zKCNzL1G?%irKFVoc8jhpLqxH%=n+QXvGpH!0ds(JRncS%Ba&_VC3kwKMnv^LUjS+Q zQRIq2q)O#Ty-!4{jI3e!Z(72C+mFulWBHld<_o2-KAcs3D63CrNtk44ofy`glX(f`@Oip8hGk44ofy`glX(f`h - - - - - - diff --git a/material_maker/theme/dark/curve_presets.svg.import b/material_maker/theme/dark/curve_presets.svg.import deleted file mode 100644 index 07ed204a5..000000000 --- a/material_maker/theme/dark/curve_presets.svg.import +++ /dev/null @@ -1,37 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cn1n6fh4mx52c" -path="res://.godot/imported/curve_presets.svg-98e67377f748efc842bad38cea1c58d2.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/curve_presets.svg" -dest_files=["res://.godot/imported/curve_presets.svg-98e67377f748efc842bad38cea1c58d2.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 -svg/scale=0.75 -editor/scale_with_editor_scale=false -editor/convert_colors_with_editor_theme=false diff --git a/material_maker/theme/dark/graphedit_minus.png b/material_maker/theme/dark/graphedit_minus.png deleted file mode 100644 index bc13646602aeb176c7b2b36f26179ba8a6d86c2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Z1!|<45_%) z8hCJHvx3N-jm**?rYo*zv8}V!iYwaAs>#HCQELl}rG&0izS=QKrxPs?-*T2ECW^o3 zJUC&o)x_qx+SyD2A>DN`SJ!DRpz|3#UHx3vIVCg!0Dx9n@Bjb+ diff --git a/material_maker/theme/dark/graphedit_minus.png.import b/material_maker/theme/dark/graphedit_minus.png.import deleted file mode 100644 index 40be018c9..000000000 --- a/material_maker/theme/dark/graphedit_minus.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://buutlpewvsl5f" -path="res://.godot/imported/graphedit_minus.png-7590fcf42f3fa67bcee98baa10b81265.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/graphedit_minus.png" -dest_files=["res://.godot/imported/graphedit_minus.png-7590fcf42f3fa67bcee98baa10b81265.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/graphedit_more.png b/material_maker/theme/dark/graphedit_more.png deleted file mode 100644 index 0fe70f892a8fe82663d94eba448b380880129006..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmVPx#v`IukRCwBjk+F5dAQ*(d=M7kZjA0nTE@PKAH11i!41oucr?5s4g(3}sIwjTr zNb;=5e;xM$a0fC9!x@j~j6v~dc32(av!C;lmwt{<9kA@GeYmEfe0^69<(fDMVlQc2 z#S)F{C1C-S4s|y-ZuJx$P_VyuvLt}$-m!<%YuW-{6QAI75lbXkF1QxpTUVUG#LY*> z4nzB!VBOoGT*6A!NB8(2wR>><-G=?xEUQuX511Px#+DSw~RCwBSkRfb^Fc^d{Ps~4`;JtZm<^_`j39TWsc(YLNmK5)YDn4j1^E8Bk z*Cm-?gN3dE_Im2_fBi52;qP5R5P~lXK^C`r7f>%1Wi#qYPt7PwF9pTLjr~}*=JVUB zHL-+m5gN&Uwj-;4jwI-BwwK!9Rri?jH@9U8x&pUMt+xAmEgoKwAaPqVg&Ppm!)l5T zBuAhg@Ck44ofy`glX(f`G<4n{2iyXEZl!{5`RmVdL?K zaaAcFq-?mqb{(0yDZ+kdRjYJ*-H|ub;su-h@BH|?`R9~rEysj@ZMbk`QCnO~=yAhY w%eH;1X=Ul{`x=yAp?&9%a7UTCis4uJ%A$v+!lzO;0Nuji>FVdQ&MBb@03~x!eEk44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`+(1)jUWQM#QTcuTo96cB31XglJ*Q-X4X^JzRpMtAyvFnSt0?urA3-j^ ob#GT#PP?st;@{Lw*%5V&rju4II>)(N0ca+Jr>mdKI;Vst0ClS_Qvd(} diff --git a/material_maker/theme/dark/graphnode_port.png.import b/material_maker/theme/dark/graphnode_port.png.import deleted file mode 100644 index 3e0a1e87f..000000000 --- a/material_maker/theme/dark/graphnode_port.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cgxvaurldh6mq" -path="res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/graphnode_port.png" -dest_files=["res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/graphnode_resizer.png b/material_maker/theme/dark/graphnode_resizer.png deleted file mode 100644 index 8030f4ec6a158d642e21c6a8239647b21bbfcc31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`7<#%mhE&{2 zUcj5d;I!w`f8+n@W)DIQ-u~a>xMBe#=eu@|10Qafu&B5>s_hb$n9#?-P{-?B|A&R` QEl@Lqr>mdKI;Vst0HU%bVgLXD diff --git a/material_maker/theme/dark/graphnode_resizer.png.import b/material_maker/theme/dark/graphnode_resizer.png.import deleted file mode 100644 index 75a8ffce4..000000000 --- a/material_maker/theme/dark/graphnode_resizer.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://c4k81poqyod3g" -path="res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/graphnode_resizer.png" -dest_files=["res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/hslider_grabber.png b/material_maker/theme/dark/hslider_grabber.png deleted file mode 100644 index 439c835c1d06cfef3bfde92400ed7d899d0ed725..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmV+@0oVSCP)Px#;z>k7RCwBjQGtfTKoEVFTO1G&07X8ap;ZEfpg%L|7o0c%j)T%4=>A52A;8J4 zodE7L_GW8b>Q-eQBs*{3zI}tG_8@culCP`|aMoAca4TqhO3u=ja%%UDOYOOk3R;``Yb^ijw!NfnC`)J$%0000k44ofy`glX(f`@Oip8hGPx#@JU2LRCwBrk+oq1Q4By8KBvCSVulrbbA*%DSchf^cD@aQZKw)=NnPsm0G9R7 z%>E2d480bE9oW^rqoqme+yN*GnCF0{uLqcq4tzIQjF0IH=Q4sB z^c87zksH@a)8RIh!=8g}phK(W#tr4E%!2+l+^x&8{K%(N?^d?KYN4{~*a3P~AYBGI zlmB)v=D=hWc-;vBHSprxEedvl_cA;=3Itu?aRhkj0uxMNx@{r`R8gQd=;RidngW&B z9AR1==-EV}kD1HJg@b9+N|YDtRf4?XRFfAQD%Qr7VofV|6Ha;iNB;<{?*IS*07*qo IM6N<$f>8T~p#T5? diff --git a/material_maker/theme/dark/hslider_grabber_highlight.png.import b/material_maker/theme/dark/hslider_grabber_highlight.png.import deleted file mode 100644 index 0043e0d1f..000000000 --- a/material_maker/theme/dark/hslider_grabber_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cm304a332uihs" -path="res://.godot/imported/hslider_grabber_highlight.png-fcd106809820d2a9c137f02ebb06717a.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/hslider_grabber_highlight.png" -dest_files=["res://.godot/imported/hslider_grabber_highlight.png-fcd106809820d2a9c137f02ebb06717a.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/hslider_tick.png b/material_maker/theme/dark/hslider_tick.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGA!2%?EdH*p2DaPU;cPEB*=VV?2IU1fWjv*Dd zk{cS>6j&H7zVE+Wzno2^ams&9W&eZ_5M&6HNDvWcSaa)j?&H`a20%Rwp00i_>zopr E0Des#i2wiq diff --git a/material_maker/theme/dark/hsplitcontainer_grabber.png.import b/material_maker/theme/dark/hsplitcontainer_grabber.png.import deleted file mode 100644 index 30150c23d..000000000 --- a/material_maker/theme/dark/hsplitcontainer_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cs75am60dbelx" -path="res://.godot/imported/hsplitcontainer_grabber.png-35ce137c64b2ca65aa86d2967b4c9e0a.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/hsplitcontainer_grabber.png" -dest_files=["res://.godot/imported/hsplitcontainer_grabber.png-35ce137c64b2ca65aa86d2967b4c9e0a.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/lineedit_clear.png b/material_maker/theme/dark/lineedit_clear.png deleted file mode 100644 index b3fc6cb3bf31cb78b8fe479fa95374dfa8184ca1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`}1 zDX^O`D2mxFxU|wDL4l)jr9#|?Z4>6~_7=C%%szLwl5z2)HhYt*vivHCMzyR1Y|2>* zyObFYi+}y-bjjiAZFc3w{$J%6Y^ZyFc6akVkAt7f*=H8KsE+ylN#sX|-B)I2#VDX% N44$rjF6*2UngCfYJGuY> diff --git a/material_maker/theme/dark/optionbutton_arrow.png.import b/material_maker/theme/dark/optionbutton_arrow.png.import deleted file mode 100644 index 7e5690335..000000000 --- a/material_maker/theme/dark/optionbutton_arrow.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dysx1qjceb1od" -path="res://.godot/imported/optionbutton_arrow.png-e611305ad4a2b6f0fed934f6baf485a5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/optionbutton_arrow.png" -dest_files=["res://.godot/imported/optionbutton_arrow.png-e611305ad4a2b6f0fed934f6baf485a5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/popupmenu_checked.png b/material_maker/theme/dark/popupmenu_checked.png deleted file mode 100644 index 3c6e5a6c7068a54fcfcae16aeed796e8411436d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`tn_qo45_%4 z%+Q$AR^!7V(%N)XW_!r{m&u2sS9M!9T(acZzVOnF58JZ%m@llTu9^{4o_kmhSJHqPmLH-F}Y!{fsFh*2; zZhro~X2GTQ#7i8)GVkq~y!Nnp%Qt#1-gWTp!NctT1D9TueOdMY;oij@nJr8%4wiR~ mojn|xyAlF~`*fNv@-md}{${zxJ6s;k44ofy`glX(f`Z1Qw*45_%4 z;C)1oPS@x``7oYdXn<_ z0-L{kTbr8Bu^FfRD-Ag9v3|<3oR2R~nE7TG8{b{oXL42BG4y*|#JVEIPb%R}ld>*s z%6qCezstItW!7t}Q*P7dcCx)mGU_`atn$FZ{a|6&$zOU8z65^AY7!HyS4!%Z@Y=V( vS^Eb=xk_Tb5TC{&M_$uZ$-Wax5_cKG#2)chpU8*-x}L$))z4*}Q$iB}NpEAP diff --git a/material_maker/theme/dark/popupmenu_radio_checked.png.import b/material_maker/theme/dark/popupmenu_radio_checked.png.import deleted file mode 100644 index f9c8e1cdf..000000000 --- a/material_maker/theme/dark/popupmenu_radio_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dxtyj47g22k51" -path="res://.godot/imported/popupmenu_radio_checked.png-4105e9127c56035f007d5399371a475e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/popupmenu_radio_checked.png" -dest_files=["res://.godot/imported/popupmenu_radio_checked.png-4105e9127c56035f007d5399371a475e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/popupmenu_radio_unchecked.png b/material_maker/theme/dark/popupmenu_radio_unchecked.png deleted file mode 100644 index cddf3aa8ac10735ea20d48c815d98f10c5d51492..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`)O)%(hE&{Y z@juGQ?8q_a#C(0xH|p+p)~N%X!rk44ofy`glX(f`s+N{{QZJ$^J>HO5gP#1Ozd(es_Hr&!V++i;u|VZ}l1< zJQ%y`d|2H-UzFk4`e@#Xzn>jmYM(x`(K<*%r&d(4_uZsghnLx>RSljB=vi`2IVOMQ a3L8U0XN2ambP;o)y$qhNelF{r5}E+XJw!eL diff --git a/material_maker/theme/dark/popupmenu_submenu.png.import b/material_maker/theme/dark/popupmenu_submenu.png.import deleted file mode 100644 index 3e7208d7e..000000000 --- a/material_maker/theme/dark/popupmenu_submenu.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dw0lvt1ip8ifp" -path="res://.godot/imported/popupmenu_submenu.png-9d62f158b4d031211684d1c5f15fc489.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/popupmenu_submenu.png" -dest_files=["res://.godot/imported/popupmenu_submenu.png-9d62f158b4d031211684d1c5f15fc489.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/popupmenu_unchecked.png b/material_maker/theme/dark/popupmenu_unchecked.png deleted file mode 100644 index c809465bc1cdb21907feffd2eab964fe860573dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`xO=)dhE&{2 zW@yZ5tMTCwX>B?xvpwYf%j84RtGX>4E?M$yUwCQ8hizGW%okQvSM3nFbNMv8_J!lT n?p;hxjIIVNINik#zF=bzDtWNcGk44ofy`glX(f`Ec0}645_%4 zBw?s9|KYqMX60QO%#UqT9quOeG#l_Z2l_|eGA$6<^-W?g6Hm(9%2igy+w(+q3K}>J z8~(daXti~mSW#c;@7Jf-Y2dtcsr-`GBtIA4h30z;7U)|%;BviR(Ia{!Nvdgiy(E*G zM#`EK4?CE)-o0RJc3#)Y`2C@Yb7CI%G+BQ!UfmSD?&L>x%c2R)V)jWBZQ1+E;x;e# i3D~pgX8fewv(i(SrY>J%mA(t;Vg^rFKbLh*2~7ahwpoq< diff --git a/material_maker/theme/dark/popupmenu_visibility_hidden.png.import b/material_maker/theme/dark/popupmenu_visibility_hidden.png.import deleted file mode 100644 index 842cda71f..000000000 --- a/material_maker/theme/dark/popupmenu_visibility_hidden.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bti8tyothy6ml" -path="res://.godot/imported/popupmenu_visibility_hidden.png-6fde2f2b9ee2602cc95b0daa1e043ffe.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" -dest_files=["res://.godot/imported/popupmenu_visibility_hidden.png-6fde2f2b9ee2602cc95b0daa1e043ffe.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/popupmenu_visibility_visible.png b/material_maker/theme/dark/popupmenu_visibility_visible.png deleted file mode 100644 index ae98c1fa585e6747c74f16b8786bc0dc52b5c69d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmV-T0kZyyP)Px$2T4RhRCwByk2OLAKoCVgt_=FOue^8A6Czap}%z>(g7U+nzsOn~dQt^f&xYKEk?%rr~HmBgVz?VU19Ne{6s1%iA zub^G_F6MKerdY$tt<$#Hb_}2&?Xbm4iLyn?Y5rk7)LzjJw}BJ8ZbK(r6|!ie1l&PR zaZ(0ABo?uiB9?nV3Ow5JByxC1!rN>mi{}{eII$^DNo6Nzl>DQu% f!6FODA^`vZ#eUDzZIeKE00000NkvXXu0mjfD?^ez diff --git a/material_maker/theme/dark/popupmenu_visibility_visible.png.import b/material_maker/theme/dark/popupmenu_visibility_visible.png.import deleted file mode 100644 index 4a1990716..000000000 --- a/material_maker/theme/dark/popupmenu_visibility_visible.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://tfi3spyumjxt" -path="res://.godot/imported/popupmenu_visibility_visible.png-4447e8ef0ecde762e52569cb18308982.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/popupmenu_visibility_visible.png" -dest_files=["res://.godot/imported/popupmenu_visibility_visible.png-4447e8ef0ecde762e52569cb18308982.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/popupmenu_visibility_xray.png b/material_maker/theme/dark/popupmenu_visibility_xray.png deleted file mode 100644 index a2e39e6c7e115f2a044d170d567cdfe76ddb2580..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 362 zcmV-w0hRuVP)Px$BuPX;RCwBBAOV;$kz5nK3^j*(es*@Q}Bn=o&8Q#Bf z{~r+ky_*7p_kzoX^$`j#8QuR3lzed^@s`3xuG30)BY}$ITZEy~i@EMU07)+sPX)Uo zj$tYLJ&=-!Wh`K)-KhZ?ejzED;fC-1SN9?>$RsmdRt8ygU*CcOs0Xb7-))5ghWjt> z{{z||ka!UYFk{0M?1FqCG$$pF0bX3Rri&Ag>;M1&07*qo IM6N<$f=w8f{{R30 diff --git a/material_maker/theme/dark/popupmenu_visibility_xray.png.import b/material_maker/theme/dark/popupmenu_visibility_xray.png.import deleted file mode 100644 index 1d15b6401..000000000 --- a/material_maker/theme/dark/popupmenu_visibility_xray.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://rs23woqfg04o" -path="res://.godot/imported/popupmenu_visibility_xray.png-713aed1a8aba09fe431417316016da86.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/popupmenu_visibility_xray.png" -dest_files=["res://.godot/imported/popupmenu_visibility_xray.png-713aed1a8aba09fe431417316016da86.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/sb_checkbox_focus_texture.png b/material_maker/theme/dark/sb_checkbox_focus_texture.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hG}1 zE6Cq4yuz?hcGm~7Y4RuSr!gmf5)%`-dVg}=o2CQrJvm|>l^)r^Ln>}1 zE68UUw=gd>+f~4O`qq-IryC4bwz0aJ22`kvs412(_D1X$(c5S;X9LT!K#mIsxHj); f6m2g)$}1 zFJLT4$Y5|{_j&kV>Hph?0G3d$6=E7M*jl#nTBy8{;*e;~wB%)AxOH37L+ipbEuc;Y MPgg&ebxsLQ0D9IS!2kdN diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import deleted file mode 100644 index ea5eb58bd..000000000 --- a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bsy38k8xt03bv" -path="res://.godot/imported/sb_hscrollbar_grabber_texture.png-dfa134ecd72f23f75e67a8aefb016a2c.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/sb_hscrollbar_grabber_texture.png" -dest_files=["res://.godot/imported/sb_hscrollbar_grabber_texture.png-dfa134ecd72f23f75e67a8aefb016a2c.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png b/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png deleted file mode 100644 index 1289687fbf748fbd8d93954153360e1f75f5fda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D%~c)B=-RNP8d akm_M#VAKJkLlvKa;tZayelF{r5}E*y5E5k44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`*m}A+hE&{2 zwotCs|CGm7R-yl>$K>!{4gulqLTmzCdlcolW7wuK3;*P~;b5o9gTe~DWM4fhlC}L diff --git a/material_maker/theme/dark/sb_progressbar_bg_texture.png.import b/material_maker/theme/dark/sb_progressbar_bg_texture.png.import deleted file mode 100644 index 53f4f4236..000000000 --- a/material_maker/theme/dark/sb_progressbar_bg_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dbw4y4q7mak6y" -path="res://.godot/imported/sb_progressbar_bg_texture.png-4982c630c2c9c64aea46cef98785ae1a.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/sb_progressbar_bg_texture.png" -dest_files=["res://.godot/imported/sb_progressbar_bg_texture.png-4982c630c2c9c64aea46cef98785ae1a.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/sb_progressbar_fg_texture.png b/material_maker/theme/dark/sb_progressbar_fg_texture.png deleted file mode 100644 index 5dfbb313337a9fd1824091dbc705c8da9604e5ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`sC&9NhE&{2 zUZ8x!y>-T=?|0rUQ+Qyzy{3d!fRjaL5|_bVPmKjHI2g9a#jf4!FIoxI!rk44ofy`glX(f`@Oip8hG}1 zE6Cq4yuz?hcGm~7Y4RuSr!gmf5)%`-dVg}=o2CQrJvm|>l^)r^Ln>}1 zE68UUw=gd>+f~4O`qq-IryC4bwz0aJ22`kvs412(_D1X$(c5S;X9LT!K#mIsxHj); f6m2g)$}1 zFJLT4$Y5|{_j&kV>Hph?0G3d$6=E7M*jl#nTBy8{;*e;~wB%)AxOH37L+ipbEuc;Y MPgg&ebxsLQ0D9IS!2kdN diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import deleted file mode 100644 index e7900b75f..000000000 --- a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b8adqu5k3carv" -path="res://.godot/imported/sb_vscrollbar_grabber_texture.png-62ea15adde7ebe74f0cb5d8070838981.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/sb_vscrollbar_grabber_texture.png" -dest_files=["res://.godot/imported/sb_vscrollbar_grabber_texture.png-62ea15adde7ebe74f0cb5d8070838981.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png b/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png deleted file mode 100644 index 1289687fbf748fbd8d93954153360e1f75f5fda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D%~c)B=-RNP8d akm_M#VAKJkLlvKa;tZayelF{r5}E*y5E5k44ofy`glX(f`9Po5;45_#^ zWrCrYvx7j}^1_z47pqD(PC6yKgZ=vn#y!t9*E9()P$=aJ->^B{bJE5=XT1-{_rAY9 zcW$Gwe0vV}|8{BbWf2b_&-Gf?`?cA6Syqi)VCnIm%hqzs7}hU&v%O`5npAln&t(6r zvszT1EbuzCxVrh!!Mg0=XDTTTpPwHWst~vt?=#alc*Y+IE^&5egQzd9#f^d5?%aGq z_M7^1_@^~!&HRw;BNDaqw}~28a-?qXp@=CNH+P2aZPx#zDYzuRCwBBAOV;$0xm_!W;kXWx6&Q|uFLSmWp{qv{+wM?2oP!otO5&!_?9MDA(Px#!bwCyRCwBykg*MeFc3wrVFY@hMbHJ4RO|qIz#bU@2~l7Qm;fkDY6@1s=T#EL zHkKor_&1jS^ZmPnKMsLXiCo#e!wYQj^-;@<-ubadS9G`;iEebQ-^#wT7-x-~RT4OI z`N*OS#y}%So=Bhq(Wuf>?LS~qh-fMalz{7*KBZm=d;GnxA3Ny$$A0+ O0000Px##7RU!RCwBBAOV;$9V>t+$Y;3!5pMg7=~@8{m#o2-e9T8y05?NBl;M;WQ~{6H@$XQ0i|KyWJd~#WzzT0qXyJ6X#zn_AhJjR00M^4Mczjb Q0RR9107*qoM6N<$g2`oTk^lez diff --git a/material_maker/theme/dark/tabcontainer_increment_highlight.png.import b/material_maker/theme/dark/tabcontainer_increment_highlight.png.import deleted file mode 100644 index 2fc7ee324..000000000 --- a/material_maker/theme/dark/tabcontainer_increment_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://2dheuv4p0d2d" -path="res://.godot/imported/tabcontainer_increment_highlight.png-5b4173e2b70a7c1819611e8879e0e245.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" -dest_files=["res://.godot/imported/tabcontainer_increment_highlight.png-5b4173e2b70a7c1819611e8879e0e245.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/tabcontainer_menu.png b/material_maker/theme/dark/tabcontainer_menu.png deleted file mode 100644 index 08a077f772c76555e9f5ce0347e952257e827e64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol)!2%@bdmVEHQjEnx?oJHr&dIz4a`Zi2978H@ zB^M<8(En^N#E~i^At5F4&;5@-Dye#Mxxmp)}Nbk44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`k44ofy`glX(f`9Po5;45_#^ zWrCrYvx7j}^1_z47pqD(PC6yKgZ=vn#y!t9*E9()P$=aJ->^B{bJE5=XT1-{_rAY9 zcW$Gwe0vV}|8{BbWf2b_&-Gf?`?cA6Syqi)VCnIm%hqzs7}hU&v%O`5npAln&t(6r zvszT1EbuzCxVrh!!Mg0=XDTTTpPwHWst~vt?=#alc*Y+IE^&5egQzd9#f^d5?%aGq z_M7^1_@^~!&HRw;BNDaqw}~28a-?qXp@=CNH+P2aZPx#zDYzuRCwBBAOV;$0xm_!W;kXWx6&Q|uFLSmWp{qv{+wM?2oP!otO5&!_?9MDA(Px#!bwCyRCwBykg*MeFc3wrVFY@hMbHJ4RO|qIz#bU@2~l7Qm;fkDY6@1s=T#EL zHkKor_&1jS^ZmPnKMsLXiCo#e!wYQj^-;@<-ubadS9G`;iEebQ-^#wT7-x-~RT4OI z`N*OS#y}%So=Bhq(Wuf>?LS~qh-fMalz{7*KBZm=d;GnxA3Ny$$A0+ O0000Px##7RU!RCwBBAOV;$9V>t+$Y;3!5pMg7=~@8{m#o2-e9T8y05?NBl;M;WQ~{6H@$XQ0i|KyWJd~#WzzT0qXyJ6X#zn_AhJjR00M^4Mczjb Q0RR9107*qoM6N<$g2`oTk^lez diff --git a/material_maker/theme/dark/tabs_increment_highlight.png.import b/material_maker/theme/dark/tabs_increment_highlight.png.import deleted file mode 100644 index bd1cc1b20..000000000 --- a/material_maker/theme/dark/tabs_increment_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://vjf2xjlnd5dh" -path="res://.godot/imported/tabs_increment_highlight.png-5015f1406e1afac1760a79669e4aeb56.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tabs_increment_highlight.png" -dest_files=["res://.godot/imported/tabs_increment_highlight.png-5015f1406e1afac1760a79669e4aeb56.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/textedit_fold.png b/material_maker/theme/dark/textedit_fold.png deleted file mode 100644 index 9f29941d827c4c1d30915b83d0173575cdab7503..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|{5@S9Ln>}1 zFEGkra8faA`g#B5{^xak0@e1%>(Br1<2B$^P=8u~p^k4sfxv{PoYNXsakF_gwl*KE udKffEL34wFdPl$3)8F^mwR&Efc`-2Dd#U;G{8DC+bqt=aelF{r5}E)GlrwVx diff --git a/material_maker/theme/dark/textedit_fold.png.import b/material_maker/theme/dark/textedit_fold.png.import deleted file mode 100644 index 24c5ca0b3..000000000 --- a/material_maker/theme/dark/textedit_fold.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://d2ohx44rm5pe1" -path="res://.godot/imported/textedit_fold.png-b3fec6feff31118be4f14f4eb4c01fef.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/textedit_fold.png" -dest_files=["res://.godot/imported/textedit_fold.png-b3fec6feff31118be4f14f4eb4c01fef.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/textedit_folded.png b/material_maker/theme/dark/textedit_folded.png deleted file mode 100644 index 21f2196e91de8d2dd74201334aa90f2bb2742018..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|oIG6|Ln>}1 zD={kJr#^CAd=d#Wzp$Pzjzb#q- diff --git a/material_maker/theme/dark/textedit_folded.png.import b/material_maker/theme/dark/textedit_folded.png.import deleted file mode 100644 index a56c75430..000000000 --- a/material_maker/theme/dark/textedit_folded.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bcfxo36mapscy" -path="res://.godot/imported/textedit_folded.png-4b9d6816538d87c65642d13514b3bb26.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/textedit_folded.png" -dest_files=["res://.godot/imported/textedit_folded.png-4b9d6816538d87c65642d13514b3bb26.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/textedit_space.png b/material_maker/theme/dark/textedit_space.png deleted file mode 100644 index 3775fa12722107bb55563ec326ccc4f916e70d21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 101 zcmeAS@N?(olHy`uVBq!ia0vp^93afW0wnX;%77#TV{wqX6T`Z5GB1G~c~2L|kcwN$ v3Vd(Uf9U^+FR-7(|452yp+Xx&o7f`;hVV84+hdBVh9Hfeu6{1-oD!M}1 zFEGkra8faA`g#B5{^xak0@e1%>(Br1<2B$^P=8u~p^k4sfxv{PoYNXsakF_gwl*KE udKffEL34wFdPl$3)8F^mwR&Efc`-2Dd#U;G{8DC+bqt=aelF{r5}E)GlrwVx diff --git a/material_maker/theme/dark/tree_arrow.png.import b/material_maker/theme/dark/tree_arrow.png.import deleted file mode 100644 index 2ac4802f7..000000000 --- a/material_maker/theme/dark/tree_arrow.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://mxw58hi0ogr4" -path="res://.godot/imported/tree_arrow.png-d9ef876985412c55d6df622f6e1a51ae.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tree_arrow.png" -dest_files=["res://.godot/imported/tree_arrow.png-d9ef876985412c55d6df622f6e1a51ae.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/tree_arrow_collapsed.png b/material_maker/theme/dark/tree_arrow_collapsed.png deleted file mode 100644 index 21f2196e91de8d2dd74201334aa90f2bb2742018..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|oIG6|Ln>}1 zD={kJr#^CAd=d#Wzp$Pzjzb#q- diff --git a/material_maker/theme/dark/tree_arrow_collapsed.png.import b/material_maker/theme/dark/tree_arrow_collapsed.png.import deleted file mode 100644 index 5454030e0..000000000 --- a/material_maker/theme/dark/tree_arrow_collapsed.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b81bpjjvfcnpi" -path="res://.godot/imported/tree_arrow_collapsed.png-bc5a640c27cc3374fa7fb3fef45e9b10.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tree_arrow_collapsed.png" -dest_files=["res://.godot/imported/tree_arrow_collapsed.png-bc5a640c27cc3374fa7fb3fef45e9b10.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/tree_checked.png b/material_maker/theme/dark/tree_checked.png deleted file mode 100644 index 3c6e5a6c7068a54fcfcae16aeed796e8411436d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`tn_qo45_%4 z%+Q$AR^!7V(%N)XW_!r{m&u2sS9M!9T(acZzVOnF58JZ%m@llTu9^{4o_kmhSJHqPmLH-F}Y!{fsFh*2; zZhro~X2GTQ#7i8)GVkq~y!Nnp%Qt#1-gWTp!NctT1D9TueOdMY;oij@nJr8%4wiR~ mojn|xyAlF~`*fNv@-md}{${zxJ6s;}1 zODtKy$Z_!o$GiVa{_p%<>G0;S&Hv*6>ZS_bOsvcPuD^GldCDrbO+|rU-aY>t&pe6E w`|6wLtXzp+%1aEEcK;V=UixA8%pwK`u?*e0ZXdXA08M7_boFyt=akR{0NunkyZ`_I diff --git a/material_maker/theme/dark/tree_select_arrow.png.import b/material_maker/theme/dark/tree_select_arrow.png.import deleted file mode 100644 index bf995d95b..000000000 --- a/material_maker/theme/dark/tree_select_arrow.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://ivbhbdcskgkn" -path="res://.godot/imported/tree_select_arrow.png-b9ff7ffd2f598e310a5afc673e81c6d4.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tree_select_arrow.png" -dest_files=["res://.godot/imported/tree_select_arrow.png-b9ff7ffd2f598e310a5afc673e81c6d4.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/tree_unchecked.png b/material_maker/theme/dark/tree_unchecked.png deleted file mode 100644 index c809465bc1cdb21907feffd2eab964fe860573dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`xO=)dhE&{2 zW@yZ5tMTCwX>B?xvpwYf%j84RtGX>4E?M$yUwCQ8hizGW%okQvSM3nFbNMv8_J!lT n?p;hxjIIVNINik#zF=bzDtWNcG~S zoC>X0`)%B7>fKgvoEYYF*zf+whYJpW zKO5AemU(&G43$LlYi9ZB+w?5b_ZdFRUwlOGiYogpO=Z)i+b0&ianhDba4F|xYw?a* XDi~c`qT9j^w3NZq)z4*}Q$iB};A%iH diff --git a/material_maker/theme/dark/tree_updown.png.import b/material_maker/theme/dark/tree_updown.png.import deleted file mode 100644 index 4bb481d57..000000000 --- a/material_maker/theme/dark/tree_updown.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bs3x24topb8fl" -path="res://.godot/imported/tree_updown.png-4d2d7620831af3f302b0ea0b8aa3cab5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/tree_updown.png" -dest_files=["res://.godot/imported/tree_updown.png-4d2d7620831af3f302b0ea0b8aa3cab5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/vslider_grabber.png b/material_maker/theme/dark/vslider_grabber.png deleted file mode 100644 index 439c835c1d06cfef3bfde92400ed7d899d0ed725..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmV+@0oVSCP)Px#;z>k7RCwBjQGtfTKoEVFTO1G&07X8ap;ZEfpg%L|7o0c%j)T%4=>A52A;8J4 zodE7L_GW8b>Q-eQBs*{3zI}tG_8@culCP`|aMoAca4TqhO3u=ja%%UDOYOOk3R;``Yb^ijw!NfnC`)J$%0000Px#@JU2LRCwBrk+oq1Q4By8KBvCSVulrbbA*%DSchf^cD@aQZKw)=NnPsm0G9R7 z%>E2d480bE9oW^rqoqme+yN*GnCF0{uLqcq4tzIQjF0IH=Q4sB z^c87zksH@a)8RIh!=8g}phK(W#tr4E%!2+l+^x&8{K%(N?^d?KYN4{~*a3P~AYBGI zlmB)v=D=hWc-;vBHSprxEedvl_cA;=3Itu?aRhkj0uxMNx@{r`R8gQd=;RidngW&B z9AR1==-EV}kD1HJg@b9+N|YDtRf4?XRFfAQD%Qr7VofV|6Ha;iNB;<{?*IS*07*qo IM6N<$f>8T~p#T5? diff --git a/material_maker/theme/dark/vslider_grabber_highlight.png.import b/material_maker/theme/dark/vslider_grabber_highlight.png.import deleted file mode 100644 index 2c1991ebd..000000000 --- a/material_maker/theme/dark/vslider_grabber_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://c7tbnm43rce6e" -path="res://.godot/imported/vslider_grabber_highlight.png-ce90153ad27499ef86748685fb5e8ad6.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/vslider_grabber_highlight.png" -dest_files=["res://.godot/imported/vslider_grabber_highlight.png-ce90153ad27499ef86748685fb5e8ad6.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/vsplitcontainer_grabber.png b/material_maker/theme/dark/vsplitcontainer_grabber.png deleted file mode 100644 index 16b5655f25ec5476d51ec22cc27788af09248b28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 103 zcmeAS@N?(olHy`uVBq!ia0vp^4nWMo!2%>7XB&n9DaPU;cPEB*=VV?2If|Yxjv*Dd zk`odnSb3S*6|em-|1sal;ljei1F{Am0u8trZX3K#onHK35U7~J)78&qol`;+0Lz0M A_y7O^ diff --git a/material_maker/theme/dark/vsplitcontainer_grabber.png.import b/material_maker/theme/dark/vsplitcontainer_grabber.png.import deleted file mode 100644 index 848749f55..000000000 --- a/material_maker/theme/dark/vsplitcontainer_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cywmxr2m8h7mr" -path="res://.godot/imported/vsplitcontainer_grabber.png-724cead23ebe9c9eab7c940a161f38cf.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/dark/vsplitcontainer_grabber.png" -dest_files=["res://.godot/imported/vsplitcontainer_grabber.png-724cead23ebe9c9eab7c940a161f38cf.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/dark/windowdialog_close.png b/material_maker/theme/dark/windowdialog_close.png deleted file mode 100644 index b3fc6cb3bf31cb78b8fe479fa95374dfa8184ca1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`k44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`k44ofy`glX(f`EcJA845_%4 z%)ltimg~bI(#pi%S8&y!)<(x^rj`se62GVX>geGlrws#yZm+VP!^GJ%jv6bP0l+XkKmZ48i diff --git a/material_maker/theme/light/checkbox_checked.png.import b/material_maker/theme/light/checkbox_checked.png.import deleted file mode 100644 index 656ce51c0..000000000 --- a/material_maker/theme/light/checkbox_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bg66nf03a1wj0" -path="res://.godot/imported/checkbox_checked.png-c0986c182e6fca2791532c43a111e8f5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/checkbox_checked.png" -dest_files=["res://.godot/imported/checkbox_checked.png-c0986c182e6fca2791532c43a111e8f5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/checkbox_radio_checked.png b/material_maker/theme/light/checkbox_radio_checked.png deleted file mode 100644 index 0514226a4705eae0fa0b4a3f0624b9dcc630ab23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`?DTYT45_%) z5@0CQqQK+h_zj^FxxQHd=;K|K}+iVi>gDr=?(gc?Z50*(CYR{WF z*k}Iv?aSl!pU3O7lH1zND@uE$*4I31P~ODhX3kK~)KKZ!SNs&{2?kGBKbLh*2~7a; CXk%jl diff --git a/material_maker/theme/light/checkbox_radio_checked.png.import b/material_maker/theme/light/checkbox_radio_checked.png.import deleted file mode 100644 index 1e864404b..000000000 --- a/material_maker/theme/light/checkbox_radio_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://ctamubqvnfppj" -path="res://.godot/imported/checkbox_radio_checked.png-8e1a3984b7a5589bd0f50cf397fea5ba.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/checkbox_radio_checked.png" -dest_files=["res://.godot/imported/checkbox_radio_checked.png-8e1a3984b7a5589bd0f50cf397fea5ba.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/checkbox_radio_unchecked.png b/material_maker/theme/light/checkbox_radio_unchecked.png deleted file mode 100644 index e440674a3956445d4f4ce11d69a7fe38c27cf97a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`GhE&{Y zov6rnR6)RH{sEx_g-kw*5l{Ftbl(2;|D-)DNBWk5|EALic$B>NZ1A}xa`ms=w-TXU z`d-Z^0?&3R-|x6;anr8$#i8p51ch=s4!YdA#+=># yRC)S+7T;>#Rg$`a+cjUM-Pye6etKm0uK(AnA~*{Itd{~^!{F)a=d#Wzp$PzejZh8% diff --git a/material_maker/theme/light/checkbox_radio_unchecked.png.import b/material_maker/theme/light/checkbox_radio_unchecked.png.import deleted file mode 100644 index c40a94588..000000000 --- a/material_maker/theme/light/checkbox_radio_unchecked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://8ulk7ii706l4" -path="res://.godot/imported/checkbox_radio_unchecked.png-faf4dd51bc2504619e8a09cf6d90bc5c.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/checkbox_radio_unchecked.png" -dest_files=["res://.godot/imported/checkbox_radio_unchecked.png-faf4dd51bc2504619e8a09cf6d90bc5c.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/checkbox_unchecked.png b/material_maker/theme/light/checkbox_unchecked.png deleted file mode 100644 index 41cfd15e8bf701387b78e289a8ba2164e7d73583..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`IC#1^hE&{2 zW?+m#x5)d9vS*U~teJ(Hb6b2l*A&f)r^!1bl@u;8MG0tZ2! ftV0uB4R$fAvgIsI+^BvCXcmK~tDnm{r-UW|{lX`K diff --git a/material_maker/theme/light/checkbox_unchecked.png.import b/material_maker/theme/light/checkbox_unchecked.png.import deleted file mode 100644 index c4c5acd98..000000000 --- a/material_maker/theme/light/checkbox_unchecked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://es1uarb585af" -path="res://.godot/imported/checkbox_unchecked.png-7033f726905719f5498de7608a33e662.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/checkbox_unchecked.png" -dest_files=["res://.godot/imported/checkbox_unchecked.png-7033f726905719f5498de7608a33e662.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/checkbutton_off.png b/material_maker/theme/light/checkbutton_off.png deleted file mode 100644 index 3667ec71891cdbf04b8cd5d3b4a9c60127273191..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmV+%0ptFOP)Px#)=5M`RCwC$l)Y+)Fcih}9~^}sN}L>p(1_p*=nLqi_i83zslJsyPgZGZO{HH* z6M8q#*%J71lAK(2i(XG2zEu4{4jD)&p!}l?kdPs-AHM=)R)vFv($9me!uUHfVZA^< zpf#4gNWLN=vYYd`X`{`!!R&#KK4F^xk6T>yu3xNoe0EM-G=W8O)`=tKiL_Yvw4LA| zC4&5IVOlNh^t8G{A-4rn4Anc-{D2x)C@OU(C4f>KpR+douZL<=eqAY8d@4mzeu8gG iFi;3aAHk3&)~#2%x@@XF%oY>?0000k44ofy`glX(f`@Oip8hGPx#{7FPXRCwC#k}-p%8%;(SO~0@sy8+|MH}3iCkLme_E7)#!w16TUa4(z>%07*qoM6N<$f+6*ip8x;= diff --git a/material_maker/theme/light/checkbutton_on.png.import b/material_maker/theme/light/checkbutton_on.png.import deleted file mode 100644 index 980755fc6..000000000 --- a/material_maker/theme/light/checkbutton_on.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://btdgduwum6udt" -path="res://.godot/imported/checkbutton_on.png-3b0b80bdea16795a115ff6d92712c373.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/checkbutton_on.png" -dest_files=["res://.godot/imported/checkbutton_on.png-3b0b80bdea16795a115ff6d92712c373.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/checkbutton_on_disabled.png b/material_maker/theme/light/checkbutton_on_disabled.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGk44ofy`glX(f`h - - - - - - diff --git a/material_maker/theme/light/curve_presets.svg.import b/material_maker/theme/light/curve_presets.svg.import deleted file mode 100644 index 45d23c210..000000000 --- a/material_maker/theme/light/curve_presets.svg.import +++ /dev/null @@ -1,37 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cpmvxmcg22a3o" -path="res://.godot/imported/curve_presets.svg-4313d3fe14ef80d1435b52b6b7c7763e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/curve_presets.svg" -dest_files=["res://.godot/imported/curve_presets.svg-4313d3fe14ef80d1435b52b6b7c7763e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 -svg/scale=0.75 -editor/scale_with_editor_scale=false -editor/convert_colors_with_editor_theme=false diff --git a/material_maker/theme/light/graphedit_minus.png b/material_maker/theme/light/graphedit_minus.png deleted file mode 100644 index bc13646602aeb176c7b2b36f26179ba8a6d86c2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Z1!|<45_%) z8hCJHvx3N-jm**?rYo*zv8}V!iYwaAs>#HCQELl}rG&0izS=QKrxPs?-*T2ECW^o3 zJUC&o)x_qx+SyD2A>DN`SJ!DRpz|3#UHx3vIVCg!0Dx9n@Bjb+ diff --git a/material_maker/theme/light/graphedit_minus.png.import b/material_maker/theme/light/graphedit_minus.png.import deleted file mode 100644 index 17d4c835d..000000000 --- a/material_maker/theme/light/graphedit_minus.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bmhbike4jtlfs" -path="res://.godot/imported/graphedit_minus.png-b1aca9866fb7e549935e53deff95d5da.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/graphedit_minus.png" -dest_files=["res://.godot/imported/graphedit_minus.png-b1aca9866fb7e549935e53deff95d5da.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/graphedit_more.png b/material_maker/theme/light/graphedit_more.png deleted file mode 100644 index 0fe70f892a8fe82663d94eba448b380880129006..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmVPx#v`IukRCwBjk+F5dAQ*(d=M7kZjA0nTE@PKAH11i!41oucr?5s4g(3}sIwjTr zNb;=5e;xM$a0fC9!x@j~j6v~dc32(av!C;lmwt{<9kA@GeYmEfe0^69<(fDMVlQc2 z#S)F{C1C-S4s|y-ZuJx$P_VyuvLt}$-m!<%YuW-{6QAI75lbXkF1QxpTUVUG#LY*> z4nzB!VBOoGT*6A!NB8(2wR>><-G=?xEUQuX511Px#+DSw~RCwBSkRfb^Fc^d{Ps~4`;JtZm<^_`j39TWsc(YLNmK5)YDn4j1^E8Bk z*Cm-?gN3dE_Im2_fBi52;qP5R5P~lXK^C`r7f>%1Wi#qYPt7PwF9pTLjr~}*=JVUB zHL-+m5gN&Uwj-;4jwI-BwwK!9Rri?jH@9U8x&pUMt+xAmEgoKwAaPqVg&Ppm!)l5T zBuAhg@Ck44ofy`glX(f`^m@8DhE&|@ zow#vrn*&d?G4o6R?G6b{i$r`5id@*tX`*wW%Vz(Je4QhlyA2;s_H6lcI%VJU+ZvN+ zH5?4)Tkh`n@Z;5QoDZVD6`u^5$TfYtcGXwYK8u>SQ`dVWym-{}`g!q-3{U5^`V|{{ zt+H|oe+Egc5VAfN`If6>{U1(-73-J+#eQ>{{Ode;iHT#$A9mM<&c?9It}B5KWAJqK Kb6Mw<&;$S;saBc* diff --git a/material_maker/theme/light/graphedit_snap.png.import b/material_maker/theme/light/graphedit_snap.png.import deleted file mode 100644 index 1f5f55b81..000000000 --- a/material_maker/theme/light/graphedit_snap.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://ddkkmsn0g8pud" -path="res://.godot/imported/graphedit_snap.png-c29c902a2316a7abc48ace8b4c45933e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/graphedit_snap.png" -dest_files=["res://.godot/imported/graphedit_snap.png-c29c902a2316a7abc48ace8b4c45933e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/graphnode_close.png b/material_maker/theme/light/graphnode_close.png deleted file mode 100644 index b3fc6cb3bf31cb78b8fe479fa95374dfa8184ca1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`G<&)@hE&|@ zo!H3P;vm4h_MzYJn`~F=;!V$1ls-B9IpG^aA>##~g7(r1%a3!89FV*!9C9wP;^9%* zs~^^-aB}mRg`Rr9mcv}`+(1)jUWQM#QTcuTo96cB31XglJ*Q-X4X^JzRpMtAyvFnSt0?urA3-j^ ob#GT#PP?st;@{Lw*%5V&rju4II>)(N0ca+Jr>mdKI;Vst0ClS_Qvd(} diff --git a/material_maker/theme/light/graphnode_port.png.import b/material_maker/theme/light/graphnode_port.png.import deleted file mode 100644 index 03c007534..000000000 --- a/material_maker/theme/light/graphnode_port.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://f7mpt2b350vh" -path="res://.godot/imported/graphnode_port.png-4e09c6f89968bdf8e3609fa1798c4707.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/graphnode_port.png" -dest_files=["res://.godot/imported/graphnode_port.png-4e09c6f89968bdf8e3609fa1798c4707.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/graphnode_resizer.png b/material_maker/theme/light/graphnode_resizer.png deleted file mode 100644 index 8030f4ec6a158d642e21c6a8239647b21bbfcc31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`7<#%mhE&{2 zUcj5d;I!w`f8+n@W)DIQ-u~a>xMBe#=eu@|10Qafu&B5>s_hb$n9#?-P{-?B|A&R` QEl@Lqr>mdKI;Vst0HU%bVgLXD diff --git a/material_maker/theme/light/graphnode_resizer.png.import b/material_maker/theme/light/graphnode_resizer.png.import deleted file mode 100644 index 5b754d853..000000000 --- a/material_maker/theme/light/graphnode_resizer.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://eqf4ery81pl3" -path="res://.godot/imported/graphnode_resizer.png-e17ea45830028c00e74f022a7191b78c.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/graphnode_resizer.png" -dest_files=["res://.godot/imported/graphnode_resizer.png-e17ea45830028c00e74f022a7191b78c.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/hslider_grabber.png b/material_maker/theme/light/hslider_grabber.png deleted file mode 100644 index 7843b8697749cf8da7761104077863f9796c898e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 299 zcmV+`0o4A9P)Px#6aTD6v&pS+eR=!nUfs+2VSAxaQl@SLXe3L1 zvBlk!d;jA3{t8i0hSh*UrU5P6G57W(c;3M<>d~8TfmsRKD)@UuEqPd$yeTCQwItww x{if&tS`u6e>e7x&h-iVdU#DKBoWx002ovPDHLkV1m6sekuR} diff --git a/material_maker/theme/light/hslider_grabber.png.import b/material_maker/theme/light/hslider_grabber.png.import deleted file mode 100644 index 4ad0b7544..000000000 --- a/material_maker/theme/light/hslider_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://udj2r7y4i8hg" -path="res://.godot/imported/hslider_grabber.png-453429b1992154872eca14e9fddda6f1.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/hslider_grabber.png" -dest_files=["res://.godot/imported/hslider_grabber.png-453429b1992154872eca14e9fddda6f1.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/hslider_grabber_disabled.png b/material_maker/theme/light/hslider_grabber_disabled.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGPx$2uVaiRCwBSQ8jwwKp1_yVa8DvPPzyVU=nq1%me3e8>~You}%`G!bzK2?hP|C z)BK&j$3pKB=rH8zAQ*WB?l!yPFQO`{{Dob)+XEmCrK|`=qwm5}R_n28R@6m<2P|RF z`wKM50tu(If=O2ylbhl9LAM`ThU)Zx`^gkJ7wU2=xviKLSX%0TV4)qHRII zt|Xvx+86RfhU69b^(rdrPORx}w}&d`L|s*-Nq@nfX9*q+Rm_pz)HF9dHO*;*f5Ros gp+*)=nqYJT0L~+s6k6LXqW}N^07*qoM6N<$g62JvcmMzZ diff --git a/material_maker/theme/light/hslider_grabber_highlight.png.import b/material_maker/theme/light/hslider_grabber_highlight.png.import deleted file mode 100644 index 098e4a878..000000000 --- a/material_maker/theme/light/hslider_grabber_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cwxwu2twvam2a" -path="res://.godot/imported/hslider_grabber_highlight.png-3f1099baab4898d900177f07843d267c.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/hslider_grabber_highlight.png" -dest_files=["res://.godot/imported/hslider_grabber_highlight.png-3f1099baab4898d900177f07843d267c.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/hslider_tick.png b/material_maker/theme/light/hslider_tick.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGA!2%?EdH*p2DaPU;cPEB*=VV?2Ioh5sjv*Dd zk{cKz6<8Q8t{*#jjMLMj@u1yNJJ-Y`96ekhm>|X`ag>!I!z9l0dCb{&Ky3`3u6{1- HoD!M<$2}h5 diff --git a/material_maker/theme/light/hsplitcontainer_grabber.png.import b/material_maker/theme/light/hsplitcontainer_grabber.png.import deleted file mode 100644 index 5a55b704f..000000000 --- a/material_maker/theme/light/hsplitcontainer_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://blxk16haasvv" -path="res://.godot/imported/hsplitcontainer_grabber.png-33341ab212b49a41574f3d569a5e8a46.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/hsplitcontainer_grabber.png" -dest_files=["res://.godot/imported/hsplitcontainer_grabber.png-33341ab212b49a41574f3d569a5e8a46.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/lineedit_clear.png b/material_maker/theme/light/lineedit_clear.png deleted file mode 100644 index c049b8d3aa7df53184a71ae42469b7742024ad56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Eb?@545_%) z>vvVM*+Ak9L&YJ9iO*m0Hk|3!XRa1`p1(@m{$%+Z{~h-w=g$p3tGW26T@n+sa_jH!E)<&5d1Q~Zf(@JB}+V_l6 g)#jJN8Tkr^J5|m%%H6FDfv#onboFyt=akR{0B6x&-~a#s diff --git a/material_maker/theme/light/lineedit_clear.png.import b/material_maker/theme/light/lineedit_clear.png.import deleted file mode 100644 index 1d24f7a1f..000000000 --- a/material_maker/theme/light/lineedit_clear.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://icdtaus46y1j" -path="res://.godot/imported/lineedit_clear.png-de21d677584265270b37710e9d7c7e62.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/lineedit_clear.png" -dest_files=["res://.godot/imported/lineedit_clear.png-de21d677584265270b37710e9d7c7e62.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/optionbutton_arrow.png b/material_maker/theme/light/optionbutton_arrow.png deleted file mode 100644 index 09fb68c38fb179b67d7aae04b51e7fd42135b81c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|vOHZJLn>}9 z?Q~^ib`)Sa?qKm>mYJJxnQq(6iziQc_5CajU;j=ki+OU^FP|BwkMRY+Ws5lJ=K7GM zzrB0X+s9&iwB6HH^eZZ7BraIr`0obi(HR;K^%nkfvpU-QvF&`R=1Dnq>!ns*Gj@Go YU%W#ugY~>+GSF5APgg&ebxsLQ0Er|)r~m)} diff --git a/material_maker/theme/light/optionbutton_arrow.png.import b/material_maker/theme/light/optionbutton_arrow.png.import deleted file mode 100644 index 3bed233b2..000000000 --- a/material_maker/theme/light/optionbutton_arrow.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://c8nvvtqgeffbt" -path="res://.godot/imported/optionbutton_arrow.png-4848aef15a9a5275014be72377937ba2.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/optionbutton_arrow.png" -dest_files=["res://.godot/imported/optionbutton_arrow.png-4848aef15a9a5275014be72377937ba2.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_checked.png b/material_maker/theme/light/popupmenu_checked.png deleted file mode 100644 index 2d165e515ad7977ef96f6cc1b27773aa6624272d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`EcJA845_%4 z%)ltimg~bI(#pi%S8&y!)<(x^rj`se62GVX>geGlrws#yZm+VP!^GJ%jv6bP0l+XkKmZ48i diff --git a/material_maker/theme/light/popupmenu_checked.png.import b/material_maker/theme/light/popupmenu_checked.png.import deleted file mode 100644 index 7efb22537..000000000 --- a/material_maker/theme/light/popupmenu_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bpnqr7xtqcjih" -path="res://.godot/imported/popupmenu_checked.png-b3fa57249fe624bb61c6bd6d8a6918a6.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_checked.png" -dest_files=["res://.godot/imported/popupmenu_checked.png-b3fa57249fe624bb61c6bd6d8a6918a6.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_radio_checked.png b/material_maker/theme/light/popupmenu_radio_checked.png deleted file mode 100644 index 0514226a4705eae0fa0b4a3f0624b9dcc630ab23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`?DTYT45_%) z5@0CQqQK+h_zj^FxxQHd=;K|K}+iVi>gDr=?(gc?Z50*(CYR{WF z*k}Iv?aSl!pU3O7lH1zND@uE$*4I31P~ODhX3kK~)KKZ!SNs&{2?kGBKbLh*2~7a; CXk%jl diff --git a/material_maker/theme/light/popupmenu_radio_checked.png.import b/material_maker/theme/light/popupmenu_radio_checked.png.import deleted file mode 100644 index 9d00ee4fd..000000000 --- a/material_maker/theme/light/popupmenu_radio_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dpsooc5vw0sgv" -path="res://.godot/imported/popupmenu_radio_checked.png-cc8591024e42cda29a24a39a2e31917e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_radio_checked.png" -dest_files=["res://.godot/imported/popupmenu_radio_checked.png-cc8591024e42cda29a24a39a2e31917e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_radio_unchecked.png b/material_maker/theme/light/popupmenu_radio_unchecked.png deleted file mode 100644 index e440674a3956445d4f4ce11d69a7fe38c27cf97a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`GhE&{Y zov6rnR6)RH{sEx_g-kw*5l{Ftbl(2;|D-)DNBWk5|EALic$B>NZ1A}xa`ms=w-TXU z`d-Z^0?&3R-|x6;anr8$#i8p51ch=s4!YdA#+=># yRC)S+7T;>#Rg$`a+cjUM-Pye6etKm0uK(AnA~*{Itd{~^!{F)a=d#Wzp$PzejZh8% diff --git a/material_maker/theme/light/popupmenu_radio_unchecked.png.import b/material_maker/theme/light/popupmenu_radio_unchecked.png.import deleted file mode 100644 index 6fed3fbc9..000000000 --- a/material_maker/theme/light/popupmenu_radio_unchecked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b5vla6ilvqctf" -path="res://.godot/imported/popupmenu_radio_unchecked.png-0e4dfeceb73454563f0f80763550b18e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_radio_unchecked.png" -dest_files=["res://.godot/imported/popupmenu_radio_unchecked.png-0e4dfeceb73454563f0f80763550b18e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_submenu.png b/material_maker/theme/light/popupmenu_submenu.png deleted file mode 100644 index 15a51cbe0fede0fe16309aeb499113d2447fac8c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`qIVPUyc2J!@$Hg#*olE(! z@-7w;nX3mgk5(@DBAQ;frmsYV%{#tS==jsKwGJ<{{e&u*v_5GBNYw`fOEWNpY_RyX Trz&nY&_)JNS3j3^P6k44ofy`glX(f`IC#1^hE&{2 zW?+m#x5)d9vS*U~teJ(Hb6b2l*A&f)r^!1bl@u;8MG0tZ2! ftV0uB4R$fAvgIsI+^BvCXcmK~tDnm{r-UW|{lX`K diff --git a/material_maker/theme/light/popupmenu_unchecked.png.import b/material_maker/theme/light/popupmenu_unchecked.png.import deleted file mode 100644 index b108b385f..000000000 --- a/material_maker/theme/light/popupmenu_unchecked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b65sty0612igq" -path="res://.godot/imported/popupmenu_unchecked.png-a3432add60a89da62a92c6add2815203.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_unchecked.png" -dest_files=["res://.godot/imported/popupmenu_unchecked.png-a3432add60a89da62a92c6add2815203.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_visibility_hidden.png b/material_maker/theme/light/popupmenu_visibility_hidden.png deleted file mode 100644 index bcaca20176530e480e07cdf0bc8602157747f9fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`tnqYl45_&F zv~MGCa{!Nv?`LU^j5$0G+}aBJ{xgKI%od!)Dbd}>r|N6O;Iwjv%C9a~SEeAf6T6Qs z-#wY9-kB>jh-JfKj#VnGs?0BsZf=#$IqE&1QK4Y<^SNireca@%vI`9tp2^yE=ZLq2 zbKZ{27kwVya+5r|dRfqq0;_3Cmmj&ezqS^?r(H;nmLz+L#Xo$7HOcn89ZJ6T-G@yGywonz*=np diff --git a/material_maker/theme/light/popupmenu_visibility_hidden.png.import b/material_maker/theme/light/popupmenu_visibility_hidden.png.import deleted file mode 100644 index 78d3c62ba..000000000 --- a/material_maker/theme/light/popupmenu_visibility_hidden.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bk08nxr8n34uj" -path="res://.godot/imported/popupmenu_visibility_hidden.png-3e53a261e7f951fe391083a8c9926bbc.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_visibility_hidden.png" -dest_files=["res://.godot/imported/popupmenu_visibility_hidden.png-3e53a261e7f951fe391083a8c9926bbc.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/popupmenu_visibility_visible.png b/material_maker/theme/light/popupmenu_visibility_visible.png deleted file mode 100644 index 74f384f6323327d215825b72c7acc5d4882dc23c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{5%P)Px$0!c(cRCwBy5d&I;QE;+dKMs&>+xA1QBV=4Go*~<=54q1_-em6X!`K5hoFIsT zXuMGn_?tS-p0~*fd5U+Eb!0kxQ3e8!lyma&(_Ku7`xK`>N?xMyKnQMfQwVv0+;vj? zt2)nBt}AtceW$X&|6 z8wK1XYCW0^HWbsOp}{_h_o9Ir?*^D+OfhvV1VouiA<9Caj!}v+4e;c9Qc3$%B;H8K z_or9~`JU8;7gVOo`yXxISEhOa9ZHizt$y5fk)nOwLz*M+ku&lf?+kxlk_C$>p2z~S aNB{tnP=xTxp$!@U0000Px$5J^NqRCwByPBlVBF%TTw-QC@_LIMr$5Hh&lf{wFs2Rhv8XtCYk&Yyh}8AAX_ zLGAOT;TzNkPj9*%Ub}e?*s_)&yhkF&o4Ct+nLBRynQBi-!Ylflc_WwS6RXpOHhQ+0 z6v}c{%JX$sH23w|WR&{`mFS6ZN^vF>Kq~B(noq2iVq%1sj$^qc7%S1BnTAw|!t3v+ z3uSfAdsWuKMk|3cwLl$ssD!cHTDXfB!c3GBoE1VE?6wjHSBfzG98n1=st%1A5OgPa z>ob%7Qqnw?qzQu}2ECnp+z$+ICg_SG1+t$_6n6+{k8AqG9x;OvN#k?$g- oBfW#vwHa|lmM#$L0F{#f0N`zF2uWfKdH?_b07*qoM6N<$g1Qoor~m)} diff --git a/material_maker/theme/light/popupmenu_visibility_xray.png.import b/material_maker/theme/light/popupmenu_visibility_xray.png.import deleted file mode 100644 index 7dc568bfd..000000000 --- a/material_maker/theme/light/popupmenu_visibility_xray.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://7t3wgnfyojbm" -path="res://.godot/imported/popupmenu_visibility_xray.png-7f0277eeff19ef9e7577eea12a2eaf6f.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/popupmenu_visibility_xray.png" -dest_files=["res://.godot/imported/popupmenu_visibility_xray.png-7f0277eeff19ef9e7577eea12a2eaf6f.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/sb_checkbox_focus_texture.png b/material_maker/theme/light/sb_checkbox_focus_texture.png deleted file mode 100644 index 366ceab3b13ec07b4d599d4ffe961e697fb8c3d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hG}1 zE68^kzhGWyv1^)r^Ln>}1 zE68UUw=gd>+f~4O`qq-IryC4bwz0aJ22`kvs412(_D1X$(c5S;X9LT!K#mIsxHj); f6m2g)$}1 zFJOF-GJ)C2&nGcgFxooWI#gTe~DWM4f`IR7J diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import b/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import deleted file mode 100644 index 6c9a24155..000000000 --- a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cxnruxbdt5cv8" -path="res://.godot/imported/sb_hscrollbar_grabber_texture.png-d1dd0327069616f7fd4d0b4b14cd9482.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/sb_hscrollbar_grabber_texture.png" -dest_files=["res://.godot/imported/sb_hscrollbar_grabber_texture.png-d1dd0327069616f7fd4d0b4b14cd9482.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png b/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png deleted file mode 100644 index 1289687fbf748fbd8d93954153360e1f75f5fda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D%~c)B=-RNP8d akm_M#VAKJkLlvKa;tZayelF{r5}E*y5E5k44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`@Oip8hGk44ofy`glX(f`*m$})hE&{2 z=9t{q(c^QFPg&{E5=kZH2A?|yO^hy<#xIf@&m~wIEIi%7`(o0fgb>Dq3)Cbce=N2( b@{wX-t%)>wsbT03G>5^{)z4*}Q$iB}-ohtL diff --git a/material_maker/theme/light/sb_progressbar_bg_texture.png.import b/material_maker/theme/light/sb_progressbar_bg_texture.png.import deleted file mode 100644 index ad644c382..000000000 --- a/material_maker/theme/light/sb_progressbar_bg_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://br4yamxs7ctfx" -path="res://.godot/imported/sb_progressbar_bg_texture.png-5f6488da9930ce851eca36c74272f5d5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/sb_progressbar_bg_texture.png" -dest_files=["res://.godot/imported/sb_progressbar_bg_texture.png-5f6488da9930ce851eca36c74272f5d5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/sb_progressbar_fg_texture.png b/material_maker/theme/light/sb_progressbar_fg_texture.png deleted file mode 100644 index 85501142964a0278090a63e12f221954f59fd687..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`=yk44ofy`glX(f`@Oip8hG}1 zE68^kzhGWyv1^)r^Ln>}1 zE68UUw=gd>+f~4O`qq-IryC4bwz0aJ22`kvs412(_D1X$(c5S;X9LT!K#mIsxHj); f6m2g)$}1 zFJOF-GJ)C2&nGcgFxooWI#gTe~DWM4f`IR7J diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import b/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import deleted file mode 100644 index 06c213fbe..000000000 --- a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bmc3fv7a8bk16" -path="res://.godot/imported/sb_vscrollbar_grabber_texture.png-c85d369d08bde6b998f795a112605ea0.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/sb_vscrollbar_grabber_texture.png" -dest_files=["res://.godot/imported/sb_vscrollbar_grabber_texture.png-c85d369d08bde6b998f795a112605ea0.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png b/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png deleted file mode 100644 index 1289687fbf748fbd8d93954153360e1f75f5fda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D%~c)B=-RNP8d akm_M#VAKJkLlvKa;tZayelF{r5}E*y5E5Px#v`IukRCwBykTDiRKoExiMwNP|Ms1an6pF+Vc*|VPQ*a0>sdKG}v4od~zcIeg z&d%V(Lom?LKb(41A&tDIG*yv$2mB;y<-Mh9AGG^>#ltnW_xY_|Phm*za1sKES*n~> zh#<9M8xlB>ei7X=>jyR3{<(af06t@<k44ofy`glX(f`?DceU45_%4 ztiae|^upi;(?Y%pt*kdTx;}B4*YQi_tL7&cmp)nPSz9)jJlVP8KZiu+xkxEj^O#?$ zGfG?3T{!QE7`C0rnXzSlpPBOv(JNDO3_F-)+fF1WEDX=H3gSt;6{x?EtMBCj(Ha)c zAJN%>DdYKq$nnyf7b-!T+D0^ z%(?OKUQJ@2=sVVr%Y?0iJS;rj=ehH0sAn=c`YLSlU|`tT)fM*dm{2j$BMhFdelF{r G5}E)Io?>+X diff --git a/material_maker/theme/light/tabcontainer_decrement_highlight.png.import b/material_maker/theme/light/tabcontainer_decrement_highlight.png.import deleted file mode 100644 index 52acbf077..000000000 --- a/material_maker/theme/light/tabcontainer_decrement_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://b0k03vcrkfp8" -path="res://.godot/imported/tabcontainer_decrement_highlight.png-b306c678204fd7289cc47ca05e09f7b4.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabcontainer_decrement_highlight.png" -dest_files=["res://.godot/imported/tabcontainer_decrement_highlight.png-b306c678204fd7289cc47ca05e09f7b4.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabcontainer_increment.png b/material_maker/theme/light/tabcontainer_increment.png deleted file mode 100644 index a6353826d4102b59d00f6ca83472f08313e583c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Z1Qw*45_#^ zb)uqBvw?u?e#g*!lLefU#2Pa!on{<}>vcS!=n!~z>#aoRC<&h5yqn)ooSRdykmFYC zxdK5G(egk4mSwL}vUng~c>c7$@Bbxt?>FVv`BxSNz4s4HP(JI!9Qj6cv5Uunwb{K| zN;iBng#}G2o*mUzJh<%j_ci`4o~{nd_7+GO-u%HP`f-P}t`F~m~GgPJN<*ily{iO@--cBp=Q(0S84|F|)r>mdKI;Vst0KwH|!TPx#z)3_wRCwBzkueT}FcgO01S<<2Y`g%ivk4>&C7S3UTkY!=$~g%WUW2;91=LU} zfw1tu3I4C|PyfOW#lYe88xHZ7od>GIMh|+xMpb#RvI~l>{>+1IK^Lc;t!^^Yc0&9X z0%+V%nKF2Aj~L~-vX>;3}m_ne8hzxK{9O@ z5iuy^fHI4KB)W57%J{-W=&t#^pVP_4R)jE1P<$&M!mFUs4BR#Q)pH~;_u M07*qoM6N<$f*FBq&Hw-a diff --git a/material_maker/theme/light/tabcontainer_increment_highlight.png.import b/material_maker/theme/light/tabcontainer_increment_highlight.png.import deleted file mode 100644 index 96d5aaaac..000000000 --- a/material_maker/theme/light/tabcontainer_increment_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://5bfmrv468m5p" -path="res://.godot/imported/tabcontainer_increment_highlight.png-55a5215f001510265ccfe029df65cf5d.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabcontainer_increment_highlight.png" -dest_files=["res://.godot/imported/tabcontainer_increment_highlight.png-55a5215f001510265ccfe029df65cf5d.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabcontainer_menu.png b/material_maker/theme/light/tabcontainer_menu.png deleted file mode 100644 index 3e76bc4ba49af347ef145f82be1181d281fd4224..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol)!2%@bdmVEHQjEnx?oJHr&dIz4a!fp3978H@ zB|k_tn7pxnOTWqFhp7nx2^;!1_%j~jU}a;gWLsb{rFj+4k*VxX3c^#3KP+QpxIIl) U*PKxy4yd2O)78&qol`;+0DZ3`OaK4? diff --git a/material_maker/theme/light/tabcontainer_menu.png.import b/material_maker/theme/light/tabcontainer_menu.png.import deleted file mode 100644 index a7d022992..000000000 --- a/material_maker/theme/light/tabcontainer_menu.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://df4txeqlevst0" -path="res://.godot/imported/tabcontainer_menu.png-e5bb399fd96571b802bec904ab0f2da4.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabcontainer_menu.png" -dest_files=["res://.godot/imported/tabcontainer_menu.png-e5bb399fd96571b802bec904ab0f2da4.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabcontainer_menu_highlight.png b/material_maker/theme/light/tabcontainer_menu_highlight.png deleted file mode 100644 index 0d85d631c7692a98f31c7e3fde9aa66202ca1545..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol)!2%@bdmVEHQjEnx?oJHr&dIz4a_l`_978H@ z$#k(ZGAMGm#&h}>ep%44`OjK8E$M$smrMSA&Y$Ht5aI`;&;^Q gfuvFT17Bu_P3cw%?47>$1poj5 diff --git a/material_maker/theme/light/tabcontainer_menu_highlight.png.import b/material_maker/theme/light/tabcontainer_menu_highlight.png.import deleted file mode 100644 index fb57212ed..000000000 --- a/material_maker/theme/light/tabcontainer_menu_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bi7pdrlqaixka" -path="res://.godot/imported/tabcontainer_menu_highlight.png-b9f863128dfd0d3aa4ede8bdd413b2e3.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabcontainer_menu_highlight.png" -dest_files=["res://.godot/imported/tabcontainer_menu_highlight.png-b9f863128dfd0d3aa4ede8bdd413b2e3.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabs_close.png b/material_maker/theme/light/tabs_close.png deleted file mode 100644 index c049b8d3aa7df53184a71ae42469b7742024ad56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Eb?@545_%) z>vvVM*+Ak9L&YJ9iO*m0Hk|3!XRa1`p1(@m{$%+Z{~h-w=g$p3tGW26T@n+sa_jH!E)<&5d1Q~Zf(@JB}+V_l6 g)#jJN8Tkr^J5|m%%H6FDfv#onboFyt=akR{0B6x&-~a#s diff --git a/material_maker/theme/light/tabs_close.png.import b/material_maker/theme/light/tabs_close.png.import deleted file mode 100644 index b027c4126..000000000 --- a/material_maker/theme/light/tabs_close.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://cy80m33tspaey" -path="res://.godot/imported/tabs_close.png-df84e0ab594396122a8b86b1e9dbd768.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabs_close.png" -dest_files=["res://.godot/imported/tabs_close.png-df84e0ab594396122a8b86b1e9dbd768.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabs_decrement.png b/material_maker/theme/light/tabs_decrement.png deleted file mode 100644 index 04a0c8b5adb59bc474a12fadbfec4afefaffebe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmVPx#v`IukRCwBykTDiRKoExiMwNP|Ms1an6pF+Vc*|VPQ*a0>sdKG}v4od~zcIeg z&d%V(Lom?LKb(41A&tDIG*yv$2mB;y<-Mh9AGG^>#ltnW_xY_|Phm*za1sKES*n~> zh#<9M8xlB>ei7X=>jyR3{<(af06t@<k44ofy`glX(f`?DceU45_%4 ztiae|^upi;(?Y%pt*kdTx;}B4*YQi_tL7&cmp)nPSz9)jJlVP8KZiu+xkxEj^O#?$ zGfG?3T{!QE7`C0rnXzSlpPBOv(JNDO3_F-)+fF1WEDX=H3gSt;6{x?EtMBCj(Ha)c zAJN%>DdYKq$nnyf7b-!T+D0^ z%(?OKUQJ@2=sVVr%Y?0iJS;rj=ehH0sAn=c`YLSlU|`tT)fM*dm{2j$BMhFdelF{r G5}E)Io?>+X diff --git a/material_maker/theme/light/tabs_decrement_highlight.png.import b/material_maker/theme/light/tabs_decrement_highlight.png.import deleted file mode 100644 index 7a6b72ac4..000000000 --- a/material_maker/theme/light/tabs_decrement_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://1spe48kjqobv" -path="res://.godot/imported/tabs_decrement_highlight.png-91f4d692459c0f95150b188eb57bdc5f.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabs_decrement_highlight.png" -dest_files=["res://.godot/imported/tabs_decrement_highlight.png-91f4d692459c0f95150b188eb57bdc5f.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tabs_increment.png b/material_maker/theme/light/tabs_increment.png deleted file mode 100644 index a6353826d4102b59d00f6ca83472f08313e583c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Z1Qw*45_#^ zb)uqBvw?u?e#g*!lLefU#2Pa!on{<}>vcS!=n!~z>#aoRC<&h5yqn)ooSRdykmFYC zxdK5G(egk4mSwL}vUng~c>c7$@Bbxt?>FVv`BxSNz4s4HP(JI!9Qj6cv5Uunwb{K| zN;iBng#}G2o*mUzJh<%j_ci`4o~{nd_7+GO-u%HP`f-P}t`F~m~GgPJN<*ily{iO@--cBp=Q(0S84|F|)r>mdKI;Vst0KwH|!TPx#z)3_wRCwBzkueT}FcgO01S<<2Y`g%ivk4>&C7S3UTkY!=$~g%WUW2;91=LU} zfw1tu3I4C|PyfOW#lYe88xHZ7od>GIMh|+xMpb#RvI~l>{>+1IK^Lc;t!^^Yc0&9X z0%+V%nKF2Aj~L~-vX>;3}m_ne8hzxK{9O@ z5iuy^fHI4KB)W57%J{-W=&t#^pVP_4R)jE1P<$&M!mFUs4BR#Q)pH~;_u M07*qoM6N<$f*FBq&Hw-a diff --git a/material_maker/theme/light/tabs_increment_highlight.png.import b/material_maker/theme/light/tabs_increment_highlight.png.import deleted file mode 100644 index 4a0d45492..000000000 --- a/material_maker/theme/light/tabs_increment_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dcv6tqjh4fbmb" -path="res://.godot/imported/tabs_increment_highlight.png-c39d66436e3c5f07a40c9f2ef932afbb.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tabs_increment_highlight.png" -dest_files=["res://.godot/imported/tabs_increment_highlight.png-c39d66436e3c5f07a40c9f2ef932afbb.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/textedit_fold.png b/material_maker/theme/light/textedit_fold.png deleted file mode 100644 index 412701c0860f47c0162bb78ad4ff54a8bf5a6161..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|!aQ9ZLn>}1 zFEE%Nw14K}1 zD=<815Lmro?c}w~?byvY{eO%6R?rFBB~x}#K{Hn;XpVwrv^>x5FP3kb8>(ua1h$qQ yI8=79N+x64?aGFhQp=52;z~V=s;3=P7#N~n@t-otU*!cfox#)9&t;ucLK6TiSu!&K diff --git a/material_maker/theme/light/textedit_folded.png.import b/material_maker/theme/light/textedit_folded.png.import deleted file mode 100644 index d7c937a3f..000000000 --- a/material_maker/theme/light/textedit_folded.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://8ornq11nxdrh" -path="res://.godot/imported/textedit_folded.png-0de14e76d2c473e25c283b22e419358b.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/textedit_folded.png" -dest_files=["res://.godot/imported/textedit_folded.png-0de14e76d2c473e25c283b22e419358b.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/textedit_space.png b/material_maker/theme/light/textedit_space.png deleted file mode 100644 index 1a33f2b58c58f66de75e05f97bcc1b3d9a9c6f75..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 100 zcmeAS@N?(olHy`uVBq!ia0vp^93afW0wnX;%77#TV{wqX6T`Z5GB1G~IZqeIkcwN$ u3Su`nZ*eLW=CZuydCQZ_V#sn~s{kj1tRRc7yOZ4qkUmdWKbLh*2~7afvKHk4 diff --git a/material_maker/theme/light/textedit_space.png.import b/material_maker/theme/light/textedit_space.png.import deleted file mode 100644 index 39554e47f..000000000 --- a/material_maker/theme/light/textedit_space.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://mhktkgaelexe" -path="res://.godot/imported/textedit_space.png-3a5ca74d2fec559facb01f8c094ff249.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/textedit_space.png" -dest_files=["res://.godot/imported/textedit_space.png-3a5ca74d2fec559facb01f8c094ff249.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/textedit_tab.png b/material_maker/theme/light/textedit_tab.png deleted file mode 100644 index 71b9e1ffa8cfc603bdf37bf18a0dd13806c1700f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^93afW0wnX;%77#TV{wqX6T`Z5GB1G~e@_?3kcwNr zzFQfc0(pEUS{BT!Zg%;0pX+bgUCTS?Q@9SXS5Hu6K5-%-zEF^>>%W(rI-|mW6*C)d v(XYxA7S1;a{Fu6K!_P~5`s(s8Kl{e}S5WBAnT=akfh_WL^>bP0l+XkKD<(6d diff --git a/material_maker/theme/light/textedit_tab.png.import b/material_maker/theme/light/textedit_tab.png.import deleted file mode 100644 index f78181cbb..000000000 --- a/material_maker/theme/light/textedit_tab.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dj2ckjbe6vwal" -path="res://.godot/imported/textedit_tab.png-c16ee940d1839ccf1788aaafe8fa84b8.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/textedit_tab.png" -dest_files=["res://.godot/imported/textedit_tab.png-c16ee940d1839ccf1788aaafe8fa84b8.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tree_arrow.png b/material_maker/theme/light/tree_arrow.png deleted file mode 100644 index 412701c0860f47c0162bb78ad4ff54a8bf5a6161..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=$0wn*`OvwRKjKx9jP7LeL$-D$|!aQ9ZLn>}1 zFEE%Nw14K}1 zD=<815Lmro?c}w~?byvY{eO%6R?rFBB~x}#K{Hn;XpVwrv^>x5FP3kb8>(ua1h$qQ yI8=79N+x64?aGFhQp=52;z~V=s;3=P7#N~n@t-otU*!cfox#)9&t;ucLK6TiSu!&K diff --git a/material_maker/theme/light/tree_arrow_collapsed.png.import b/material_maker/theme/light/tree_arrow_collapsed.png.import deleted file mode 100644 index 02784e09f..000000000 --- a/material_maker/theme/light/tree_arrow_collapsed.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://c6mx1qg7dmi3c" -path="res://.godot/imported/tree_arrow_collapsed.png-e03d16399e5c7c757742173cf4fbb4e5.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tree_arrow_collapsed.png" -dest_files=["res://.godot/imported/tree_arrow_collapsed.png-e03d16399e5c7c757742173cf4fbb4e5.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tree_checked.png b/material_maker/theme/light/tree_checked.png deleted file mode 100644 index 2d165e515ad7977ef96f6cc1b27773aa6624272d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`EcJA845_%4 z%)ltimg~bI(#pi%S8&y!)<(x^rj`se62GVX>geGlrws#yZm+VP!^GJ%jv6bP0l+XkKmZ48i diff --git a/material_maker/theme/light/tree_checked.png.import b/material_maker/theme/light/tree_checked.png.import deleted file mode 100644 index 05225bfc9..000000000 --- a/material_maker/theme/light/tree_checked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dvici6o14jnks" -path="res://.godot/imported/tree_checked.png-7c27a3a7246b9af5d42113bf56da9a58.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tree_checked.png" -dest_files=["res://.godot/imported/tree_checked.png-7c27a3a7246b9af5d42113bf56da9a58.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tree_select_arrow.png b/material_maker/theme/light/tree_select_arrow.png deleted file mode 100644 index 1171e894a9006f3213b1c26c094e5c50f501a7a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh0wlLOK8*rWjKx9jP7LeL$-D$|Vmw_OLn>}1 zODu8V|CspxDa5wukR1-%++b7I)S#v|M3ixO+l)uhz;hQ-Jm`c)I$z JtaD0e0sz|MIYR&d diff --git a/material_maker/theme/light/tree_select_arrow.png.import b/material_maker/theme/light/tree_select_arrow.png.import deleted file mode 100644 index 3f4553942..000000000 --- a/material_maker/theme/light/tree_select_arrow.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dl81so0gphsk2" -path="res://.godot/imported/tree_select_arrow.png-5bd14dcc1615e5b01fec8bd72e81b6ae.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tree_select_arrow.png" -dest_files=["res://.godot/imported/tree_select_arrow.png-5bd14dcc1615e5b01fec8bd72e81b6ae.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tree_unchecked.png b/material_maker/theme/light/tree_unchecked.png deleted file mode 100644 index 41cfd15e8bf701387b78e289a8ba2164e7d73583..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`IC#1^hE&{2 zW?+m#x5)d9vS*U~teJ(Hb6b2l*A&f)r^!1bl@u;8MG0tZ2! ftV0uB4R$fAvgIsI+^BvCXcmK~tDnm{r-UW|{lX`K diff --git a/material_maker/theme/light/tree_unchecked.png.import b/material_maker/theme/light/tree_unchecked.png.import deleted file mode 100644 index efc717755..000000000 --- a/material_maker/theme/light/tree_unchecked.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bemah233ej4q5" -path="res://.godot/imported/tree_unchecked.png-b2f9250e0b030703b8b2f3767ec5d3ce.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/tree_unchecked.png" -dest_files=["res://.godot/imported/tree_unchecked.png-b2f9250e0b030703b8b2f3767ec5d3ce.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/tree_updown.png b/material_maker/theme/light/tree_updown.png deleted file mode 100644 index 880a5668760da90fdc3e928f13504e071d85949d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh0wlLOK8*rWjKx9jP7LeL$-D$|+C5zyLn>~S z_8$~%Rp4<6X2^8RacE)lx%H9DedXipzs0{aNY?B$*rWL7QpfQcfjJ^45Bgqt_vMoO zvs-KL?V6;u^=0mrc`A=Lx%I8NFsXgNxRsygL{61!MRQJvpZjX*zf^sXadzM%%`4Y$ zIcQwu+RNN{A=t?wlh-Hz(%OYV!D1ykx46zm8YPx#6aTD6v&pS+eR=!nUfs+2VSAxaQl@SLXe3L1 zvBlk!d;jA3{t8i0hSh*UrU5P6G57W(c;3M<>d~8TfmsRKD)@UuEqPd$yeTCQwItww x{if&tS`u6e>e7x&h-iVdU#DKBoWx002ovPDHLkV1m6sekuR} diff --git a/material_maker/theme/light/vslider_grabber.png.import b/material_maker/theme/light/vslider_grabber.png.import deleted file mode 100644 index b1ef91ca9..000000000 --- a/material_maker/theme/light/vslider_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://jourlkt3abm1" -path="res://.godot/imported/vslider_grabber.png-3b60c9c2b708bdca528545e5e003510e.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/vslider_grabber.png" -dest_files=["res://.godot/imported/vslider_grabber.png-3b60c9c2b708bdca528545e5e003510e.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/vslider_grabber_highlight.png b/material_maker/theme/light/vslider_grabber_highlight.png deleted file mode 100644 index a7cda536819a52d306933cfca8169c932c36f078..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 334 zcmV-U0kQsxP)Px$2uVaiRCwBSQ8jwwKp1_yVa8DvPPzyVU=nq1%me3e8>~You}%`G!bzK2?hP|C z)BK&j$3pKB=rH8zAQ*WB?l!yPFQO`{{Dob)+XEmCrK|`=qwm5}R_n28R@6m<2P|RF z`wKM50tu(If=O2ylbhl9LAM`ThU)Zx`^gkJ7wU2=xviKLSX%0TV4)qHRII zt|Xvx+86RfhU69b^(rdrPORx}w}&d`L|s*-Nq@nfX9*q+Rm_pz)HF9dHO*;*f5Ros gp+*)=nqYJT0L~+s6k6LXqW}N^07*qoM6N<$g62JvcmMzZ diff --git a/material_maker/theme/light/vslider_grabber_highlight.png.import b/material_maker/theme/light/vslider_grabber_highlight.png.import deleted file mode 100644 index 9a0254149..000000000 --- a/material_maker/theme/light/vslider_grabber_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dfgva5pkdlq5a" -path="res://.godot/imported/vslider_grabber_highlight.png-ccf381c8b2072c1a4bfe5c6452311c05.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/vslider_grabber_highlight.png" -dest_files=["res://.godot/imported/vslider_grabber_highlight.png-ccf381c8b2072c1a4bfe5c6452311c05.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/vsplitcontainer_grabber.png b/material_maker/theme/light/vsplitcontainer_grabber.png deleted file mode 100644 index ed6c0edd5bbcf9499681e250050ce1c3424e34bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^4nWMo!2%>7XB&n9DaPU;cPEB*=VV?2IjWv6jv*Dd zk`odnSU2%-F|(v9Ub}5^V>u7cmcj|L1?)UEB0WqD>{)S+Gk)z;2WnvOboFyt=akR{ E0PS-dZvX%Q diff --git a/material_maker/theme/light/vsplitcontainer_grabber.png.import b/material_maker/theme/light/vsplitcontainer_grabber.png.import deleted file mode 100644 index 6cd88f6dc..000000000 --- a/material_maker/theme/light/vsplitcontainer_grabber.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dd6fbmgw8m5uo" -path="res://.godot/imported/vsplitcontainer_grabber.png-c2eee269ca62a5c830a828c5b980aef2.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/vsplitcontainer_grabber.png" -dest_files=["res://.godot/imported/vsplitcontainer_grabber.png-c2eee269ca62a5c830a828c5b980aef2.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/windowdialog_close.png b/material_maker/theme/light/windowdialog_close.png deleted file mode 100644 index c049b8d3aa7df53184a71ae42469b7742024ad56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Eb?@545_%) z>vvVM*+Ak9L&YJ9iO*m0Hk|3!XRa1`p1(@m{$%+Z{~h-w=g$p3tGW26T@n+sa_jH!E)<&5d1Q~Zf(@JB}+V_l6 g)#jJN8Tkr^J5|m%%H6FDfv#onboFyt=akR{0B6x&-~a#s diff --git a/material_maker/theme/light/windowdialog_close.png.import b/material_maker/theme/light/windowdialog_close.png.import deleted file mode 100644 index cc7acbdea..000000000 --- a/material_maker/theme/light/windowdialog_close.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://bhegc6iau74uk" -path="res://.godot/imported/windowdialog_close.png-adccde24d0a60e6b3e821c06b1ac0c5b.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/windowdialog_close.png" -dest_files=["res://.godot/imported/windowdialog_close.png-adccde24d0a60e6b3e821c06b1ac0c5b.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 diff --git a/material_maker/theme/light/windowdialog_close_highlight.png b/material_maker/theme/light/windowdialog_close_highlight.png deleted file mode 100644 index c049b8d3aa7df53184a71ae42469b7742024ad56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf67>k44ofy`glX(f`Eb?@545_%) z>vvVM*+Ak9L&YJ9iO*m0Hk|3!XRa1`p1(@m{$%+Z{~h-w=g$p3tGW26T@n+sa_jH!E)<&5d1Q~Zf(@JB}+V_l6 g)#jJN8Tkr^J5|m%%H6FDfv#onboFyt=akR{0B6x&-~a#s diff --git a/material_maker/theme/light/windowdialog_close_highlight.png.import b/material_maker/theme/light/windowdialog_close_highlight.png.import deleted file mode 100644 index 15c830ff0..000000000 --- a/material_maker/theme/light/windowdialog_close_highlight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="CompressedTexture2D" -uid="uid://dnpkpa0bt81gl" -path="res://.godot/imported/windowdialog_close_highlight.png-72a2e1dfe0a59b667b052bbc9feeec65.ctex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://material_maker/theme/light/windowdialog_close_highlight.png" -dest_files=["res://.godot/imported/windowdialog_close_highlight.png-72a2e1dfe0a59b667b052bbc9feeec65.ctex"] - -[params] - -compress/mode=0 -compress/high_quality=false -compress/lossy_quality=0.7 -compress/hdr_compression=1 -compress/normal_map=0 -compress/channel_pack=0 -mipmaps/generate=false -mipmaps/limit=-1 -roughness/mode=0 -roughness/src_normal="" -process/fix_alpha_border=true -process/premult_alpha=false -process/normal_map_invert_y=false -process/hdr_as_srgb=false -process/hdr_clamp_exposure=false -process/size_limit=0 -detect_3d/compress_to=1 From 2120693c87585db843667eac364f7b993cdef6c6 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Thu, 24 Oct 2024 18:08:46 +0200 Subject: [PATCH 03/10] Rename icon sheet --- material_maker/theme/classic.tres | 3 ++- material_maker/theme/default dark.tres | 2 +- .../theme/{new_theme_icons.svg => default_theme_icons.svg} | 0 ...heme_icons.svg.import => default_theme_icons.svg.import} | 6 +++--- 4 files changed, 6 insertions(+), 5 deletions(-) rename material_maker/theme/{new_theme_icons.svg => default_theme_icons.svg} (100%) rename material_maker/theme/{new_theme_icons.svg.import => default_theme_icons.svg.import} (71%) diff --git a/material_maker/theme/classic.tres b/material_maker/theme/classic.tres index 0faeb3dac..b9090c1cd 100644 --- a/material_maker/theme/classic.tres +++ b/material_maker/theme/classic.tres @@ -1,8 +1,9 @@ [gd_resource type="Theme" load_steps=83 format=3 uid="uid://42cileyfwaca"] -[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/new_theme_icons.svg" id="1_7p32q"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_7p32q"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_l05jd"] + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"] content_margin_left = 3.0 content_margin_top = 3.0 diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres index 5e9c051fc..13f9082fa 100644 --- a/material_maker/theme/default dark.tres +++ b/material_maker/theme/default dark.tres @@ -1,7 +1,7 @@ [gd_resource type="Theme" load_steps=86 format=3 uid="uid://b628lwfk6ig2c"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] -[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/new_theme_icons.svg" id="2_dekrq"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="2_dekrq"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"] content_margin_left = 6.0 diff --git a/material_maker/theme/new_theme_icons.svg b/material_maker/theme/default_theme_icons.svg similarity index 100% rename from material_maker/theme/new_theme_icons.svg rename to material_maker/theme/default_theme_icons.svg diff --git a/material_maker/theme/new_theme_icons.svg.import b/material_maker/theme/default_theme_icons.svg.import similarity index 71% rename from material_maker/theme/new_theme_icons.svg.import rename to material_maker/theme/default_theme_icons.svg.import index a93735a25..de154dfc4 100644 --- a/material_maker/theme/new_theme_icons.svg.import +++ b/material_maker/theme/default_theme_icons.svg.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c7mq31csbj1fg" -path="res://.godot/imported/new_theme_icons.svg-311b4b29e327a617fca12fcb13bb842e.ctex" +path="res://.godot/imported/default_theme_icons.svg-68308e5a0a34a69fc6ba57ebd6c4baca.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://material_maker/theme/new_theme_icons.svg" -dest_files=["res://.godot/imported/new_theme_icons.svg-311b4b29e327a617fca12fcb13bb842e.ctex"] +source_file="res://material_maker/theme/default_theme_icons.svg" +dest_files=["res://.godot/imported/default_theme_icons.svg-68308e5a0a34a69fc6ba57ebd6c4baca.ctex"] [params] From e2b25ede7fd89c47c5dff2d349e2cd2d39ffda68 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Thu, 24 Oct 2024 19:01:08 +0200 Subject: [PATCH 04/10] Improve icon coloring in Enhanced theme (light theme mainly) Also adds a few more icons. --- addons/flexible_layout/flexible_tab.gd | 2 + .../panels/graph_edit/graph_edit.tscn | 1 + material_maker/theme/classic.tres | 48 +++- material_maker/theme/default dark.tres | 188 ++++++++++--- material_maker/theme/default_theme_icons.svg | 265 +++++++++++++++++- .../enhanced_theme_system/enhanced_theme.gd | 13 +- 6 files changed, 472 insertions(+), 45 deletions(-) diff --git a/addons/flexible_layout/flexible_tab.gd b/addons/flexible_layout/flexible_tab.gd index dc106e330..74effe70d 100644 --- a/addons/flexible_layout/flexible_tab.gd +++ b/addons/flexible_layout/flexible_tab.gd @@ -23,7 +23,9 @@ func get_flex_layout(): func update(): $Container/Close.texture_normal = get_theme_icon("close", "MM_FlexibleTab") + $Container/Close.modulate = get_theme_color("font_selected_color", "MM_FlexibleTab") $Container/Undock.texture_normal = get_theme_icon("undock", "MM_FlexibleTab") + $Container/Undock.modulate = get_theme_color("font_selected_color", "MM_FlexibleTab") if not updating: updating = true var is_current: bool = (get_index() == get_parent().get_parent().current) diff --git a/material_maker/panels/graph_edit/graph_edit.tscn b/material_maker/panels/graph_edit/graph_edit.tscn index 481e089c3..4ac621986 100644 --- a/material_maker/panels/graph_edit/graph_edit.tscn +++ b/material_maker/panels/graph_edit/graph_edit.tscn @@ -26,6 +26,7 @@ offset_bottom = -1.49829 grid_pattern = 1 right_disconnects = true show_zoom_label = true +show_arrange_button = false script = ExtResource("1") [node name="Timer" type="Timer" parent="."] diff --git a/material_maker/theme/classic.tres b/material_maker/theme/classic.tres index b9090c1cd..cd2365c50 100644 --- a/material_maker/theme/classic.tres +++ b/material_maker/theme/classic.tres @@ -1,9 +1,8 @@ -[gd_resource type="Theme" load_steps=83 format=3 uid="uid://42cileyfwaca"] +[gd_resource type="Theme" load_steps=92 format=3 uid="uid://42cileyfwaca"] [ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_7p32q"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_l05jd"] - [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -85,6 +84,18 @@ region = Rect2(64, 112, 16, 16) atlas = ExtResource("1_7p32q") region = Rect2(96, 112, 16, 16) +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"] +atlas = ExtResource("1_7p32q") +region = Rect2(0, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"] +atlas = ExtResource("1_7p32q") +region = Rect2(16, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 96, 16, 16) + [sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] atlas = ExtResource("1_7p32q") region = Rect2(64, 96, 16, 16) @@ -275,6 +286,26 @@ region = Rect2(48, 0, 16, 16) atlas = ExtResource("1_7p32q") region = Rect2(112, 80, 16, 16) +[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] +atlas = ExtResource("1_7p32q") +region = Rect2(32, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 16, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] +atlas = ExtResource("1_7p32q") +region = Rect2(64, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"] +atlas = ExtResource("1_7p32q") +region = Rect2(48, 80, 16, 16) + [sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] atlas = ExtResource("1_7p32q") region = Rect2(32, 0, 16, 16) @@ -347,6 +378,10 @@ corner_radius_bottom_right = 4 corner_radius_bottom_left = 4 corner_detail = 4 +[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"] +atlas = ExtResource("1_7p32q") +region = Rect2(112, 16, 16, 16) + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ofcpt"] content_margin_left = 3.0 content_margin_top = 3.0 @@ -637,6 +672,9 @@ GraphEdit/colors/grid_major = Color(0.321569, 0.337255, 0.384314, 1) GraphEdit/colors/grid_minor = Color(0.321569, 0.337255, 0.384314, 1) GraphEdit/constants/port_hotzone_inner_extent = 8 GraphEdit/constants/port_hotzone_outer_extent = 50 +GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u") +GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34") +GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b") GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") @@ -674,6 +712,11 @@ MM_FlexibleTab/base_type = &"TabBar" MM_FlexibleTab/constants/separation = 3 MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") +MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs") +MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak") +MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd") +MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od") +MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd") MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") MM_MainBackground/base_type = &"PanelContainer" MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5") @@ -692,6 +735,7 @@ MM_NodeGradientEditPopup/base_type = &"PanelContainer" MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs") MM_NodeImageEdit/base_type = &"Button" MM_NodeOptionEdit/base_type = &"OptionButton" +MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3") MM_NodeOptionEditPopup/base_type = &"PopupMenu" MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_ofcpt") MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_g2id4") diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres index 13f9082fa..bd795a5d4 100644 --- a/material_maker/theme/default dark.tres +++ b/material_maker/theme/default dark.tres @@ -1,7 +1,7 @@ -[gd_resource type="Theme" load_steps=86 format=3 uid="uid://b628lwfk6ig2c"] +[gd_resource type="Theme" load_steps=94 format=3 uid="uid://b628lwfk6ig2c"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] -[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="2_dekrq"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_s43fy"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"] content_margin_left = 6.0 @@ -60,47 +60,67 @@ corner_radius_bottom_right = 3 corner_radius_bottom_left = 3 [sub_resource type="AtlasTexture" id="AtlasTexture_chskd"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(80, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(112, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(16, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(0, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(32, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(64, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(96, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"] +atlas = ExtResource("1_s43fy") +region = Rect2(0, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"] +atlas = ExtResource("1_s43fy") +region = Rect2(16, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 96, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(64, 96, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(80, 96, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(96, 96, 16, 16) [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"] @@ -214,6 +234,18 @@ corner_radius_bottom_right = 4 corner_radius_bottom_left = 4 corner_detail = 4 +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k8x4n"] +content_margin_left = 10.0 +content_margin_top = 2.0 +content_margin_right = 10.0 +content_margin_bottom = 2.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 +corner_detail = 4 + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k7e83"] content_margin_left = 6.0 content_margin_top = 3.0 @@ -268,35 +300,35 @@ corner_radius_bottom_left = 5 corner_detail = 4 [sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 0, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(112, 80, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(32, 48, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 48, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(112, 16, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(64, 80, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 80, 16, 16) [sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(32, 0, 16, 16) [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"] @@ -389,8 +421,9 @@ corner_radius_bottom_left = 4 corner_detail = 4 [sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(112, 16, 16, 16) +metadata/recolor = false [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"] content_margin_left = 2.0 @@ -495,40 +528,49 @@ content_margin_bottom = 6.0 bg_color = Color(0.117647, 0.121569, 0.133333, 1) [sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(80, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(112, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(16, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(0, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(32, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 96, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(64, 112, 16, 16) +metadata/recolor = false [sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(96, 112, 16, 16) +metadata/recolor = false [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"] content_margin_left = 3.0 @@ -548,9 +590,54 @@ content_margin_right = 3.0 content_margin_bottom = 3.0 bg_color = Color(0.117647, 0.121569, 0.133333, 1) +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8sgsn"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kx6bo"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_re015"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6dsbu"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + [sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"] -atlas = ExtResource("2_dekrq") +atlas = ExtResource("1_s43fy") region = Rect2(48, 0, 16, 16) +metadata/recolor = false [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"] content_margin_left = 7.0 @@ -646,14 +733,24 @@ Button/colors/font_focus_color = Color(0.95, 0.95, 0.95, 1) Button/colors/font_hover_color = Color(0.95, 0.95, 0.95, 1) Button/colors/font_hover_pressed_color = Color(1, 1, 1, 1) Button/colors/font_pressed_color = Color(1, 1, 1, 1) -Button/colors/icon_hover_pressed_color = Color(0.874128, 0.694643, 0.972002, 1) -Button/colors/icon_pressed_color = Color(0.792157, 0.478431, 0.94902, 1) +Button/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +Button/colors/icon_focus_color = Color(1, 1, 1, 1) +Button/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +Button/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +Button/colors/icon_normal_color = Color(1, 1, 1, 1) +Button/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) Button/styles/disabled = SubResource("StyleBoxFlat_inl5r") Button/styles/focus = SubResource("StyleBoxFlat_kvrsn") Button/styles/hover = SubResource("StyleBoxFlat_2qiie") Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie") Button/styles/normal = SubResource("StyleBoxFlat_rxikb") Button/styles/pressed = SubResource("StyleBoxFlat_rxikb") +CheckBox/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +CheckBox/colors/icon_focus_color = Color(1, 1, 1, 1) +CheckBox/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +CheckBox/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +CheckBox/colors/icon_normal_color = Color(1, 1, 1, 1) +CheckBox/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) CheckBox/icons/checked = SubResource("AtlasTexture_chskd") CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub") CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu") @@ -666,6 +763,9 @@ GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1) GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1) GraphEdit/constants/port_hotzone_inner_extent = 8 GraphEdit/constants/port_hotzone_outer_extent = 50 +GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u") +GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34") +GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b") GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") @@ -695,7 +795,7 @@ LineEdit/colors/font_selected_color = Color(1, 1, 1, 1) LineEdit/colors/font_uneditable_color = Color(0.875, 0.875, 0.875, 0.5) LineEdit/colors/selection_color = Color(0.5, 0.5, 0.5, 1) LineEdit/styles/focus = SubResource("StyleBoxFlat_s437y") -LineEdit/styles/normal = SubResource("StyleBoxFlat_k7e83") +LineEdit/styles/normal = SubResource("StyleBoxFlat_k8x4n") LineEdit/styles/read_only = SubResource("StyleBoxFlat_k7e83") MM_AddNodePanel/base_type = &"PanelContainer" MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_f0kci") @@ -730,6 +830,12 @@ MM_NodeGradientEditPopup/base_type = &"PanelContainer" MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs") MM_NodeImageEdit/base_type = &"Button" MM_NodeOptionEdit/base_type = &"OptionButton" +MM_NodeOptionEdit/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +MM_NodeOptionEdit/colors/icon_focus_color = Color(1, 1, 1, 1) +MM_NodeOptionEdit/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +MM_NodeOptionEdit/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +MM_NodeOptionEdit/colors/icon_normal_color = Color(1, 1, 1, 1) +MM_NodeOptionEdit/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3") MM_NodeOptionEditPopup/base_type = &"PopupMenu" MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py") @@ -770,6 +876,18 @@ PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn") PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj") PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc") PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu") +SpinBox/colors/down_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) +SpinBox/colors/down_hover_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/down_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/down_pressed_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) +SpinBox/colors/up_hover_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_pressed_icon_modulate = Color(1, 1, 1, 1) +SpinBox/styles/down_background_hovered = SubResource("StyleBoxFlat_8sgsn") +SpinBox/styles/down_background_pressed = SubResource("StyleBoxFlat_kx6bo") +SpinBox/styles/up_background_hovered = SubResource("StyleBoxFlat_re015") +SpinBox/styles/up_background_pressed = SubResource("StyleBoxFlat_6dsbu") TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1) TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1) diff --git a/material_maker/theme/default_theme_icons.svg b/material_maker/theme/default_theme_icons.svg index 4ebf20473..3d77b9b26 100644 --- a/material_maker/theme/default_theme_icons.svg +++ b/material_maker/theme/default_theme_icons.svg @@ -8,7 +8,7 @@ version="1.1" id="svg1" inkscape:version="1.4 (86a8ad7, 2024-10-11)" - sodipodi:docname="new_theme_icons.svg" + sodipodi:docname="default_theme_icons.svg" inkscape:export-filename="new_theme_icons.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" @@ -28,15 +28,15 @@ inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" showgrid="true" - inkscape:zoom="8" - inkscape:cx="93.9375" - inkscape:cy="96.25" + inkscape:zoom="22.627417" + inkscape:cx="20.351417" + inkscape:cy="131.56606" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" - inkscape:current-layer="layer47"> + inkscape:current-layer="svg1"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd index f507f75fd..85a1440d2 100644 --- a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd +++ b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd @@ -64,12 +64,19 @@ func update(at:Node=null) -> void: for swap in theme_color_swaps: theme_color_swap_dict[swap.orig.to_html()] = swap.target.to_html() + var icon_color_swap_dict := {} + for swap in icon_color_swaps: + icon_color_swap_dict[swap.orig.to_html()] = swap.target.to_html() + ## COLORS for type in get_color_type_list(): for color_name in get_color_list(type): if "font_" in color_name: if get_color(color_name, type).to_html() in font_color_swap_dict: set_color(color_name, type, Color(font_color_swap_dict[get_color(color_name, type).to_html()])) + elif "icon_" in color_name: + if get_color(color_name, type).to_html() in icon_color_swap_dict: + set_color(color_name, type, Color(icon_color_swap_dict[get_color(color_name, type).to_html()])) else: if get_color(color_name, type).to_html() in theme_color_swap_dict: set_color(color_name, type, Color(theme_color_swap_dict[get_color(color_name, type).to_html()])) @@ -135,10 +142,10 @@ func update(at:Node=null) -> void: var texture: AtlasTexture = get_icon(icon_name, type) var texture_scale: float = texture.get_meta("scale", 1)# * scale - if base_texture.has_meta("keep_colors"): - texture.atlas = get_dynamic_svg(path, texture_scale) - else: + if base_texture.has_meta("recolor"): texture.atlas = get_dynamic_svg(path, texture_scale, icon_color_swaps) + else: + texture.atlas = get_dynamic_svg(path, texture_scale) var base_region: Rect2 = base_texture.region texture.region.position = base_region.position * texture_scale From 05c3f15772b242c65a7d4bd19d184287995b07e8 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Tue, 5 Nov 2024 19:35:22 +0100 Subject: [PATCH 05/10] Small fixes --- material_maker/panels/graph_edit/graph_edit.tscn | 1 - material_maker/theme/default light.tres | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/material_maker/panels/graph_edit/graph_edit.tscn b/material_maker/panels/graph_edit/graph_edit.tscn index 4ac621986..481e089c3 100644 --- a/material_maker/panels/graph_edit/graph_edit.tscn +++ b/material_maker/panels/graph_edit/graph_edit.tscn @@ -26,7 +26,6 @@ offset_bottom = -1.49829 grid_pattern = 1 right_disconnects = true show_zoom_label = true -show_arrange_button = false script = ExtResource("1") [node name="Timer" type="Timer" parent="."] diff --git a/material_maker/theme/default light.tres b/material_maker/theme/default light.tres index 2a95c44e9..df02acfa9 100644 --- a/material_maker/theme/default light.tres +++ b/material_maker/theme/default light.tres @@ -671,7 +671,7 @@ target = Color(0.0562916, 0.0562916, 0.0562916, 1) script = ExtResource("4_rhf2q") name = "Secondary" orig = Color(0.933333, 0.521569, 0.909804, 1) -target = Color(0.149953, 0.652053, 0.834827, 1) +target = Color(0.46572, 0.189705, 0.480764, 1) [sub_resource type="Resource" id="Resource_8dhbo"] script = ExtResource("4_rhf2q") From 4b9461503d02fd576a7a6c800e37857636640a90 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Tue, 5 Nov 2024 19:41:56 +0100 Subject: [PATCH 06/10] Fix icon hover color in light theme --- material_maker/theme/default light.tres | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/material_maker/theme/default light.tres b/material_maker/theme/default light.tres index df02acfa9..2c903adb5 100644 --- a/material_maker/theme/default light.tres +++ b/material_maker/theme/default light.tres @@ -1,4 +1,4 @@ -[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=100 format=3 uid="uid://u00kx2lkkx8j"] +[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=101 format=3 uid="uid://u00kx2lkkx8j"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_de56q"] [ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="2_gdmjv"] @@ -671,7 +671,7 @@ target = Color(0.0562916, 0.0562916, 0.0562916, 1) script = ExtResource("4_rhf2q") name = "Secondary" orig = Color(0.933333, 0.521569, 0.909804, 1) -target = Color(0.46572, 0.189705, 0.480764, 1) +target = Color(0.565764, 0.138889, 0.589763, 1) [sub_resource type="Resource" id="Resource_8dhbo"] script = ExtResource("4_rhf2q") @@ -679,6 +679,12 @@ name = "MainDisabled" orig = Color(0.807843, 0.807843, 0.807843, 1) target = Color(0.237539, 0.237539, 0.237539, 1) +[sub_resource type="Resource" id="Resource_5oh4i"] +script = ExtResource("4_rhf2q") +name = "Hover" +orig = Color(0.933333, 0.678431, 0.909804, 1) +target = Color(0.398892, 0.209142, 0.42588, 1) + [sub_resource type="Resource" id="Resource_ub5ur"] script = ExtResource("4_rhf2q") name = "Main Background" @@ -933,5 +939,5 @@ Tree/styles/selected_focus = SubResource("StyleBoxFlat_uf4s7") script = ExtResource("5_fagh3") base_theme = ExtResource("3_e7v0o") font_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")]) -icon_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo")]) +icon_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo"), SubResource("Resource_5oh4i")]) theme_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")]) From bec23d66c8f4c214ea4026e614b684d44665b7fb Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Wed, 13 Nov 2024 17:19:20 +0100 Subject: [PATCH 07/10] Fix 2D/3D Preview icons in graph view and model/enviroment icons --- material_maker/main_window_projects_panel.gd | 8 + .../panels/preview_3d/preview_3d_ui.gd | 3 + .../panels/preview_3d/preview_3d_ui.tscn | 4 +- material_maker/projects_panel.tscn | 27 +- material_maker/theme/default dark.tres | 31 +- material_maker/theme/default_theme_icons.svg | 2454 +++++++++-------- 6 files changed, 1372 insertions(+), 1155 deletions(-) diff --git a/material_maker/main_window_projects_panel.gd b/material_maker/main_window_projects_panel.gd index e01096321..732210c19 100644 --- a/material_maker/main_window_projects_panel.gd +++ b/material_maker/main_window_projects_panel.gd @@ -9,6 +9,14 @@ extends Control @onready var preview_3d_background_panel = $PreviewUI/Panel +func _notification(what: int) -> void: + if what == NOTIFICATION_THEME_CHANGED: + if not is_node_ready(): + await ready + preview_2d_background_button.icon = get_theme_icon("2D_preview", "MM_Icons") + preview_3d_background_button.icon = get_theme_icon("3D_preview", "MM_Icons") + %ControlView.texture = get_theme_icon("3D_preview_control", "MM_Icons") + func get_projects(): return projects diff --git a/material_maker/panels/preview_3d/preview_3d_ui.gd b/material_maker/panels/preview_3d/preview_3d_ui.gd index 9a3f915a7..196edbe6c 100644 --- a/material_maker/panels/preview_3d/preview_3d_ui.gd +++ b/material_maker/panels/preview_3d/preview_3d_ui.gd @@ -5,3 +5,6 @@ var target_node func _ready() -> void: target_node = get_node(target) + + $Model.icon = get_theme_icon("model", "MM_Icons") + $Environment.icon = get_theme_icon("environment", "MM_Icons") diff --git a/material_maker/panels/preview_3d/preview_3d_ui.tscn b/material_maker/panels/preview_3d/preview_3d_ui.tscn index 3025ef1fe..228b71fa1 100644 --- a/material_maker/panels/preview_3d/preview_3d_ui.tscn +++ b/material_maker/panels/preview_3d/preview_3d_ui.tscn @@ -1,5 +1,6 @@ -[gd_scene load_steps=4 format=3 uid="uid://brlp703awvxbn"] +[gd_scene load_steps=5 format=3 uid="uid://brlp703awvxbn"] +[ext_resource type="Script" path="res://material_maker/panels/preview_3d/preview_3d_ui.gd" id="1_oc43p"] [ext_resource type="Texture2D" uid="uid://c0j4px4n72di5" path="res://material_maker/icons/icons.tres" id="2"] [sub_resource type="AtlasTexture" id="1"] @@ -15,6 +16,7 @@ anchors_preset = 10 anchor_right = 1.0 offset_bottom = 20.0 size_flags_horizontal = 3 +script = ExtResource("1_oc43p") [node name="Model" type="MenuButton" parent="."] layout_mode = 2 diff --git a/material_maker/projects_panel.tscn b/material_maker/projects_panel.tscn index 7924584a6..f995765d1 100644 --- a/material_maker/projects_panel.tscn +++ b/material_maker/projects_panel.tscn @@ -1,10 +1,9 @@ -[gd_scene load_steps=12 format=3 uid="uid://bnqq3vhwmudkw"] +[gd_scene load_steps=8 format=3 uid="uid://bnqq3vhwmudkw"] [ext_resource type="Script" path="res://material_maker/main_window_projects_panel.gd" id="1_m3usq"] [ext_resource type="PackedScene" uid="uid://bb6iar0tbj2qt" path="res://material_maker/panels/preview_2d/preview_2d.tscn" id="2_oiaqi"] [ext_resource type="PackedScene" uid="uid://dpaxvlnn2u1f6" path="res://material_maker/panels/preview_3d/preview_3d.tscn" id="3_qvj7k"] [ext_resource type="Script" path="res://material_maker/widgets/tabs/tabs.gd" id="4_mpinq"] -[ext_resource type="Texture2D" uid="uid://c0j4px4n72di5" path="res://material_maker/icons/icons.tres" id="5_1qnqj"] [ext_resource type="PackedScene" uid="uid://brlp703awvxbn" path="res://material_maker/panels/preview_3d/preview_3d_ui.tscn" id="6_mpc0m"] [sub_resource type="Shader" id="1"] @@ -15,18 +14,6 @@ resource_local_to_scene = true render_priority = 0 shader = SubResource("1") -[sub_resource type="AtlasTexture" id="3"] -atlas = ExtResource("5_1qnqj") -region = Rect2(96, 96, 32, 32) - -[sub_resource type="AtlasTexture" id="4"] -atlas = ExtResource("5_1qnqj") -region = Rect2(96, 32, 32, 32) - -[sub_resource type="AtlasTexture" id="5"] -atlas = ExtResource("5_1qnqj") -region = Rect2(96, 64, 32, 31) - [node name="ProjectsPanel" type="Control"] clip_contents = true custom_minimum_size = Vector2(100, 100) @@ -118,10 +105,10 @@ layout_mode = 1 anchors_preset = 2 anchor_top = 1.0 anchor_bottom = 1.0 -offset_left = 5.5 -offset_top = -53.5 -offset_right = 335.5 -offset_bottom = -13.5 +offset_left = 11.5 +offset_top = -24.5 +offset_right = 95.5 +offset_bottom = -16.5 grow_vertical = 0 mouse_filter = 2 @@ -129,13 +116,11 @@ mouse_filter = 2 layout_mode = 2 tooltip_text = "Show 2D preview" toggle_mode = true -icon = SubResource("3") [node name="Preview3DButton" type="Button" parent="PreviewUI"] layout_mode = 2 tooltip_text = "Show 3D preview" toggle_mode = true -icon = SubResource("4") [node name="Panel" type="PanelContainer" parent="PreviewUI"] visible = false @@ -148,9 +133,9 @@ layout_mode = 2 layout_mode = 2 [node name="ControlView" type="TextureRect" parent="PreviewUI/Panel/HBoxContainer"] +unique_name_in_owner = true layout_mode = 2 size_flags_vertical = 4 -texture = SubResource("5") [node name="Preview3DUI" parent="PreviewUI/Panel/HBoxContainer" instance=ExtResource("6_mpc0m")] layout_mode = 2 diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres index bd795a5d4..069576183 100644 --- a/material_maker/theme/default dark.tres +++ b/material_maker/theme/default dark.tres @@ -1,4 +1,4 @@ -[gd_resource type="Theme" load_steps=94 format=3 uid="uid://b628lwfk6ig2c"] +[gd_resource type="Theme" load_steps=99 format=3 uid="uid://b628lwfk6ig2c"] [ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] [ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_s43fy"] @@ -307,6 +307,22 @@ region = Rect2(48, 0, 16, 16) atlas = ExtResource("1_s43fy") region = Rect2(112, 80, 16, 16) +[sub_resource type="AtlasTexture" id="AtlasTexture_1yu4y"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 128, 16, 16) +metadata/scale = 2.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao7ds"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 128, 16, 16) +metadata/scale = 2.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_hht3q"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 128, 16, 16) +metadata/scale = 2.0 +metadata/recolor = true + [sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] atlas = ExtResource("1_s43fy") region = Rect2(32, 48, 16, 16) @@ -319,6 +335,14 @@ region = Rect2(48, 48, 16, 16) atlas = ExtResource("1_s43fy") region = Rect2(112, 16, 16, 16) +[sub_resource type="AtlasTexture" id="AtlasTexture_x8swe"] +atlas = ExtResource("1_s43fy") +region = Rect2(80, 64, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsr33"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 64, 16, 16) + [sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] atlas = ExtResource("1_s43fy") region = Rect2(64, 80, 16, 16) @@ -807,9 +831,14 @@ MM_FlexibleTab/base_type = &"TabBar" MM_FlexibleTab/constants/separation = 3 MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") +MM_Icons/icons/2D_preview = SubResource("AtlasTexture_1yu4y") +MM_Icons/icons/3D_preview = SubResource("AtlasTexture_ao7ds") +MM_Icons/icons/3D_preview_control = SubResource("AtlasTexture_hht3q") MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs") MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak") MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd") +MM_Icons/icons/environment = SubResource("AtlasTexture_x8swe") +MM_Icons/icons/model = SubResource("AtlasTexture_dsr33") MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od") MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd") MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") diff --git a/material_maker/theme/default_theme_icons.svg b/material_maker/theme/default_theme_icons.svg index 3d77b9b26..01b57710d 100644 --- a/material_maker/theme/default_theme_icons.svg +++ b/material_maker/theme/default_theme_icons.svg @@ -28,15 +28,15 @@ inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" showgrid="true" - inkscape:zoom="22.627417" - inkscape:cx="20.351417" - inkscape:cy="131.56606" + inkscape:zoom="16" + inkscape:cx="74.09375" + inkscape:cy="126.125" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" - inkscape:current-layer="svg1"> + inkscape:current-layer="layer61"> + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + id="layer61" + inkscape:label="ninth_row"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + inkscape:label="Flag" + transform="matrix(0.67636941,0,0,0.67636941,-1007.6956,-654.48258)" /> + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + inkscape:label="cube" + transform="matrix(0.67636941,0,0,0.67636941,-1007.6956,-654.48258)" /> + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + transform="matrix(0.24074079,0,0,0.24074079,34.666632,-13.333362)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - From ee62815be4d12b28b06477ba11f15993889dba6a Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Wed, 13 Nov 2024 17:37:23 +0100 Subject: [PATCH 08/10] Split Default theme into base and variations We now have a default.tres theme and both default dark and default light are using the enhanced theme system. This makes them behave more similar. The default is still using the same base colors as dark, this could be changed in the future, probably when we want to expose the colors to the users. --- material_maker/main_window.tscn | 3 +- material_maker/theme/default dark.tres | 1129 +++-------------- material_maker/theme/default light.tres | 757 +---------- material_maker/theme/default.tres | 941 ++++++++++++++ .../enhanced_theme_system/enhanced_theme.gd | 1 - 5 files changed, 1136 insertions(+), 1695 deletions(-) create mode 100644 material_maker/theme/default.tres diff --git a/material_maker/main_window.tscn b/material_maker/main_window.tscn index a94ebf77b..301beb87b 100644 --- a/material_maker/main_window.tscn +++ b/material_maker/main_window.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=20 format=3 uid="uid://cgfeik04a5qqs"] [ext_resource type="Script" path="res://material_maker/main_window.gd" id="1"] -[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default dark.tres" id="1_2qcba"] +[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default.tres" id="1_2qcba"] [ext_resource type="Script" path="res://material_maker/main_window_layout.gd" id="2"] [ext_resource type="PackedScene" uid="uid://eiq3i53x72m2" path="res://addons/flexible_layout/flexible_layout.tscn" id="6_ygla4"] [ext_resource type="PackedScene" uid="uid://clw8sb0p8webl" path="res://material_maker/windows/add_node_popup/add_node_popup.tscn" id="7"] @@ -15,6 +15,7 @@ [ext_resource type="Script" path="res://material_maker/tools/library_manager/library_manager.gd" id="14"] [ext_resource type="Texture2D" path="res://material_maker/icons/paste_none.tres" id="15"] + [sub_resource type="GDScript" id="6"] script/source = "extends Label diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres index 069576183..3819ff987 100644 --- a/material_maker/theme/default dark.tres +++ b/material_maker/theme/default dark.tres @@ -1,941 +1,192 @@ -[gd_resource type="Theme" load_steps=99 format=3 uid="uid://b628lwfk6ig2c"] - -[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] -[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_s43fy"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"] -content_margin_left = 6.0 -content_margin_top = 6.0 -content_margin_right = 6.0 -content_margin_bottom = 6.0 -bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kvrsn"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2qiie"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rxikb"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"] -atlas = ExtResource("1_s43fy") -region = Rect2(80, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"] -atlas = ExtResource("1_s43fy") -region = Rect2(16, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"] -atlas = ExtResource("1_s43fy") -region = Rect2(0, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"] -atlas = ExtResource("1_s43fy") -region = Rect2(32, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"] -atlas = ExtResource("1_s43fy") -region = Rect2(96, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"] -atlas = ExtResource("1_s43fy") -region = Rect2(0, 128, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"] -atlas = ExtResource("1_s43fy") -region = Rect2(16, 128, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 96, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 96, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"] -atlas = ExtResource("1_s43fy") -region = Rect2(80, 96, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"] -atlas = ExtResource("1_s43fy") -region = Rect2(96, 96, 16, 16) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_62l4s"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uwck0"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145762, 0.145765, 0.164989, 1) -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ryqkj"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.745098, 0.752941, 0.772549, 1) -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqse"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.490196, 0.505882, 0.545098, 1) -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ru0kh"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.490196, 0.505882, 0.545098, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_color = Color(0.745098, 0.752941, 0.772549, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_detail = 4 - -[sub_resource type="FontVariation" id="FontVariation_na26k"] -base_font = ExtResource("1_5tfb1") -variation_embolden = 0.8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m2221"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_attdh"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s437y"] -content_margin_left = 6.0 -content_margin_top = 3.0 -content_margin_right = 6.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k8x4n"] -content_margin_left = 10.0 -content_margin_top = 2.0 -content_margin_right = 10.0 -content_margin_bottom = 2.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k7e83"] -content_margin_left = 6.0 -content_margin_top = 3.0 -content_margin_right = 6.0 -content_margin_bottom = 3.0 -bg_color = Color(0.117647, 0.121569, 0.133333, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f0kci"] -content_margin_left = 4.0 -content_margin_top = 4.0 -content_margin_right = 4.0 -content_margin_bottom = 4.0 -bg_color = Color(0.0928685, 0.0957873, 0.107466, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.359069, 0.359069, 0.359069, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dyhk7"] -content_margin_left = 10.0 -content_margin_top = 2.0 -content_margin_right = 10.0 -content_margin_bottom = 2.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mv8c7"] -content_margin_left = 10.0 -content_margin_top = 2.0 -content_margin_right = 10.0 -content_margin_bottom = 2.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 -corner_detail = 4 - -[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 0, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 80, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_1yu4y"] -atlas = ExtResource("1_s43fy") -region = Rect2(32, 128, 16, 16) -metadata/scale = 2.0 - -[sub_resource type="AtlasTexture" id="AtlasTexture_ao7ds"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 128, 16, 16) -metadata/scale = 2.0 - -[sub_resource type="AtlasTexture" id="AtlasTexture_hht3q"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 128, 16, 16) -metadata/scale = 2.0 -metadata/recolor = true - -[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] -atlas = ExtResource("1_s43fy") -region = Rect2(32, 48, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 48, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 16, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_x8swe"] -atlas = ExtResource("1_s43fy") -region = Rect2(80, 64, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_dsr33"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 64, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 80, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 80, 16, 16) - -[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] -atlas = ExtResource("1_s43fy") -region = Rect2(32, 0, 16, 16) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"] -content_margin_left = 10.0 -content_margin_top = 10.0 -content_margin_right = 10.0 -content_margin_bottom = 10.0 -bg_color = Color(0.0427646, 0.0427646, 0.0456467, 1) - -[sub_resource type="FontVariation" id="FontVariation_80ifi"] -base_font = ExtResource("1_5tfb1") -opentype_features = { -1953396077: 1 -} - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ut30c"] -bg_color = Color(1, 1, 1, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_b7ktg"] -bg_color = Color(0.355314, 0.355314, 0.355314, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hgk0b"] -bg_color = Color(0.303233, 0.303233, 0.303233, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0b15u"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r1sff"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8fogc"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omwbs"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145098, 0.145098, 0.164706, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 16, 16, 16) -metadata/recolor = false - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"] -content_margin_left = 2.0 -content_margin_top = 2.0 -content_margin_right = 2.0 -content_margin_bottom = 2.0 -bg_color = Color(0.207271, 0.216386, 0.234614, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j32ac"] -content_margin_left = 2.0 -content_margin_top = 2.0 -content_margin_right = 2.0 -content_margin_bottom = 2.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.207843, 0.215686, 0.235294, 1) -corner_radius_top_left = 2 -corner_radius_top_right = 2 -corner_radius_bottom_right = 2 -corner_radius_bottom_left = 2 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k2ns1"] -bg_color = Color(0.8, 0.8, 0.8, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -corner_detail = 1 -shadow_color = Color(0, 0, 0, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uujf1"] -content_margin_left = 6.0 -content_margin_top = 6.0 -content_margin_right = 6.0 -content_margin_bottom = 6.0 -bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1k0sx"] -bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"] -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"] -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"] - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"] -bg_color = Color(0.168627, 0.176471, 0.192157, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"] -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xeqlk"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dscxc"] -content_margin_left = 6.0 -content_margin_top = 6.0 -content_margin_right = 6.0 -content_margin_bottom = 6.0 -bg_color = Color(0.117647, 0.121569, 0.133333, 1) - -[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"] -atlas = ExtResource("1_s43fy") -region = Rect2(80, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"] -atlas = ExtResource("1_s43fy") -region = Rect2(112, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"] -atlas = ExtResource("1_s43fy") -region = Rect2(16, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"] -atlas = ExtResource("1_s43fy") -region = Rect2(0, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"] -atlas = ExtResource("1_s43fy") -region = Rect2(32, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 96, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"] -atlas = ExtResource("1_s43fy") -region = Rect2(64, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"] -atlas = ExtResource("1_s43fy") -region = Rect2(96, 112, 16, 16) -metadata/recolor = false - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8p2hu"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.117647, 0.121569, 0.133333, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8sgsn"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kx6bo"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_re015"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6dsbu"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.168627, 0.176471, 0.192157, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"] -atlas = ExtResource("1_s43fy") -region = Rect2(48, 0, 16, 16) -metadata/recolor = false - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.117647, 0.121569, 0.133333, 1) -draw_center = false -border_width_top = 2 -border_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_708uu"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.145098, 0.14902, 0.164706, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r4jxv"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.129412, 0.137255, 0.152941, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w1kc3"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.109804, 0.113725, 0.12549, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc388"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5rnro"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145098, 0.145098, 0.164706, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iwtn1"] -content_margin_left = 4.0 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yrroa"] -content_margin_left = 4.0 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x5l5s"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 +[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=34 format=3 uid="uid://dhuhq2immquoh"] + +[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default.tres" id="3_xjelh"] +[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/color_swap.gd" id="4_0efyb"] +[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/enhanced_theme.gd" id="5_yjidp"] + +[sub_resource type="Resource" id="Resource_silay"] +script = ExtResource("4_0efyb") +name = "Main Font Color" +orig = Color(1, 1, 1, 1) +target = Color(1, 1, 1, 1) + +[sub_resource type="Resource" id="Resource_eavso"] +script = ExtResource("4_0efyb") +name = "NodeTitleFontOutline" +orig = Color(0.168627, 0.176471, 0.192157, 1) +target = Color(0.168627, 0.176471, 0.192157, 1) + +[sub_resource type="Resource" id="Resource_1jhxl"] +script = ExtResource("4_0efyb") +name = "Button Normal" +orig = Color(0.87451, 0.87451, 0.87451, 1) +target = Color(0.87451, 0.87451, 0.87451, 1) + +[sub_resource type="Resource" id="Resource_qiwix"] +script = ExtResource("4_0efyb") +name = "Button Hover" +orig = Color(0.94902, 0.94902, 0.94902, 1) +target = Color(0.94902, 0.94902, 0.94902, 1) + +[sub_resource type="Resource" id="Resource_5yhcl"] +script = ExtResource("4_0efyb") +name = "Button Disabled" +orig = Color(0.87451, 0.87451, 0.87451, 0.501961) +target = Color(0.87451, 0.87451, 0.87451, 0.501961) + +[sub_resource type="Resource" id="Resource_vdnfu"] +script = ExtResource("4_0efyb") +name = "Tree" +orig = Color(0.701961, 0.701961, 0.701961, 1) +target = Color(0.701961, 0.701961, 0.701961, 1) + +[sub_resource type="Resource" id="Resource_21aar"] +script = ExtResource("4_0efyb") +name = "Menu Shortcut" +orig = Color(0.701961, 0.701961, 0.701961, 0.8) +target = Color(0.701961, 0.701961, 0.701961, 0.8) + +[sub_resource type="Resource" id="Resource_us4qf"] +script = ExtResource("4_0efyb") +name = "Placeholder Color" +orig = Color(0.87451, 0.87451, 0.87451, 0.6) +target = Color(0.87451, 0.87451, 0.87451, 0.6) + +[sub_resource type="Resource" id="Resource_cisvi"] +script = ExtResource("4_0efyb") +name = "Main" +orig = Color(1, 1, 1, 1) +target = Color(1, 1, 1, 1) + +[sub_resource type="Resource" id="Resource_j2h7k"] +script = ExtResource("4_0efyb") +name = "Secondary" +orig = Color(0.933333, 0.521569, 0.909804, 1) +target = Color(0.933333, 0.521569, 0.909804, 1) + +[sub_resource type="Resource" id="Resource_8dhbo"] +script = ExtResource("4_0efyb") +name = "MainDisabled" +orig = Color(0.807843, 0.807843, 0.807843, 1) +target = Color(0.807843, 0.807843, 0.807843, 1) + +[sub_resource type="Resource" id="Resource_5oh4i"] +script = ExtResource("4_0efyb") +name = "Hover" +orig = Color(0.933333, 0.678431, 0.909804, 1) +target = Color(0.933333, 0.678431, 0.909804, 1) + +[sub_resource type="Resource" id="Resource_ub5ur"] +script = ExtResource("4_0efyb") +name = "Main Background" +orig = Color(0.0431373, 0.0431373, 0.0470588, 1) +target = Color(0.0431373, 0.0431373, 0.0470588, 1) + +[sub_resource type="Resource" id="Resource_5rv7m"] +script = ExtResource("4_0efyb") +name = "Background" +orig = Color(0.0941176, 0.0980392, 0.101961, 1) +target = Color(0.0941176, 0.0980392, 0.101961, 1) + +[sub_resource type="Resource" id="Resource_xqbwo"] +script = ExtResource("4_0efyb") +name = "Nodes" +orig = Color(0.0666667, 0.0666667, 0.0784314, 1) +target = Color(0.0666667, 0.0666667, 0.0784314, 1) + +[sub_resource type="Resource" id="Resource_a2t6i"] +script = ExtResource("4_0efyb") +name = "Elements" +orig = Color(0.168627, 0.176471, 0.192157, 1) +target = Color(0.168627, 0.176471, 0.192157, 1) + +[sub_resource type="Resource" id="Resource_pekt7"] +script = ExtResource("4_0efyb") +name = "Tab Selected" +orig = Color(0.129412, 0.137255, 0.152941, 1) +target = Color(0.129412, 0.137255, 0.152941, 1) + +[sub_resource type="Resource" id="Resource_vbpcr"] +script = ExtResource("4_0efyb") +name = "Hover" +orig = Color(0.266667, 0.278431, 0.301961, 1) +target = Color(0.266667, 0.278431, 0.301961, 1) + +[sub_resource type="Resource" id="Resource_qngft"] +script = ExtResource("4_0efyb") +name = "Tab Unselected" +orig = Color(0.109804, 0.113725, 0.12549, 1) +target = Color(0.109804, 0.113725, 0.12549, 1) + +[sub_resource type="Resource" id="Resource_5mixu"] +script = ExtResource("4_0efyb") +name = "PopupMenuPanels" +orig = Color(0.117647, 0.121569, 0.133333, 1) +target = Color(0.117647, 0.121569, 0.133333, 1) + +[sub_resource type="Resource" id="Resource_kxmra"] +script = ExtResource("4_0efyb") +name = "AddNodePopup" +orig = Color(0.0941176, 0.0941176, 0.105882, 1) +target = Color(0.0941176, 0.0941176, 0.105882, 1) + +[sub_resource type="Resource" id="Resource_siafh"] +script = ExtResource("4_0efyb") +name = "AddNodePopupBorder" +orig = Color(0.360784, 0.360784, 0.360784, 1) +target = Color(0.360784, 0.360784, 0.360784, 1) + +[sub_resource type="Resource" id="Resource_s732t"] +script = ExtResource("4_0efyb") +name = "NodeBorderUnselected" +orig = Color(0.145098, 0.145098, 0.164706, 1) +target = Color(0.145098, 0.145098, 0.164706, 1) + +[sub_resource type="Resource" id="Resource_j1t84"] +script = ExtResource("4_0efyb") +name = "NodeBorderSelected" +orig = Color(0.745098, 0.752941, 0.772549, 1) +target = Color(0.745098, 0.752941, 0.772549, 1) + +[sub_resource type="Resource" id="Resource_g7e3b"] +script = ExtResource("4_0efyb") +name = "Grid" +orig = Color(0.137255, 0.141176, 0.152941, 1) +target = Color(0.137255, 0.141176, 0.152941, 1) + +[sub_resource type="Resource" id="Resource_oirgf"] +script = ExtResource("4_0efyb") +name = "Port Preview Color" +orig = Color(0.890196, 0.890196, 0.890196, 1) +target = Color(0.890196, 0.890196, 0.890196, 1) + +[sub_resource type="Resource" id="Resource_1pump"] +script = ExtResource("4_0efyb") +name = "Node Title Color" +orig = Color(0.87451, 0.878431, 0.886275, 1) +target = Color(0.87451, 0.878431, 0.886275, 1) + +[sub_resource type="Resource" id="Resource_fxm05"] +script = ExtResource("4_0efyb") +name = "PortGroup" +orig = Color(0.8, 0.8, 0.8, 1) +target = Color(0.8, 0.8, 0.8, 1) + +[sub_resource type="Resource" id="Resource_mfxjg"] +script = ExtResource("4_0efyb") +name = "FloatFillNormal" +orig = Color(0.301961, 0.301961, 0.301961, 1) +target = Color(0.301961, 0.301961, 0.301961, 1) + +[sub_resource type="Resource" id="Resource_upxps"] +script = ExtResource("4_0efyb") +name = "FloatFillHover" +orig = Color(0.356863, 0.356863, 0.356863, 1) +target = Color(0.356863, 0.356863, 0.356863, 1) [resource] -default_font = ExtResource("1_5tfb1") -default_font_size = 16 -AcceptDialog/styles/panel = SubResource("StyleBoxFlat_telh7") -Button/colors/font_color = Color(0.875, 0.875, 0.875, 1) -Button/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) -Button/colors/font_focus_color = Color(0.95, 0.95, 0.95, 1) -Button/colors/font_hover_color = Color(0.95, 0.95, 0.95, 1) -Button/colors/font_hover_pressed_color = Color(1, 1, 1, 1) -Button/colors/font_pressed_color = Color(1, 1, 1, 1) -Button/colors/icon_disabled_color = Color(1, 1, 1, 0.4) -Button/colors/icon_focus_color = Color(1, 1, 1, 1) -Button/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) -Button/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) -Button/colors/icon_normal_color = Color(1, 1, 1, 1) -Button/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) -Button/styles/disabled = SubResource("StyleBoxFlat_inl5r") -Button/styles/focus = SubResource("StyleBoxFlat_kvrsn") -Button/styles/hover = SubResource("StyleBoxFlat_2qiie") -Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie") -Button/styles/normal = SubResource("StyleBoxFlat_rxikb") -Button/styles/pressed = SubResource("StyleBoxFlat_rxikb") -CheckBox/colors/icon_disabled_color = Color(1, 1, 1, 0.4) -CheckBox/colors/icon_focus_color = Color(1, 1, 1, 1) -CheckBox/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) -CheckBox/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) -CheckBox/colors/icon_normal_color = Color(1, 1, 1, 1) -CheckBox/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) -CheckBox/icons/checked = SubResource("AtlasTexture_chskd") -CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub") -CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu") -CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3") -CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87") -CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7") -CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2") -CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy") -GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1) -GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1) -GraphEdit/constants/port_hotzone_inner_extent = 8 -GraphEdit/constants/port_hotzone_outer_extent = 50 -GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u") -GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34") -GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b") -GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") -GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") -GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") -GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_pxlc8") -GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s") -GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1) -GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1) -GraphNode/constants/portpreview_radius = 6 -GraphNode/constants/portpreview_width = 15 -GraphNode/styles/panel = SubResource("StyleBoxFlat_uwck0") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_ryqkj") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_imqse") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_ru0kh") -GraphNodeTitleLabel/colors/font_outline_color = Color(0.168627, 0.176471, 0.192157, 1) -GraphNodeTitleLabel/colors/font_shadow_color = Color(0.168627, 0.176471, 0.192157, 1) -GraphNodeTitleLabel/constants/outline_size = 4 -GraphNodeTitleLabel/constants/shadow_outline_size = 4 -GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_na26k") -ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412) -ItemList/styles/hovered = SubResource("StyleBoxFlat_m2221") -ItemList/styles/selected = SubResource("StyleBoxFlat_attdh") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_attdh") -Label/colors/font_color = Color(1, 1, 1, 1) -LineEdit/colors/font_color = Color(0.875, 0.875, 0.875, 1) -LineEdit/colors/font_placeholder_color = Color(0.875, 0.875, 0.875, 0.6) -LineEdit/colors/font_selected_color = Color(1, 1, 1, 1) -LineEdit/colors/font_uneditable_color = Color(0.875, 0.875, 0.875, 0.5) -LineEdit/colors/selection_color = Color(0.5, 0.5, 0.5, 1) -LineEdit/styles/focus = SubResource("StyleBoxFlat_s437y") -LineEdit/styles/normal = SubResource("StyleBoxFlat_k8x4n") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_k7e83") -MM_AddNodePanel/base_type = &"PanelContainer" -MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_f0kci") -MM_AddNodePanelList/base_type = &"ItemList" -MM_FilterLineEdit/base_type = &"LineEdit" -MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7") -MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_mv8c7") -MM_FlexibleTab/base_type = &"TabBar" -MM_FlexibleTab/constants/separation = 3 -MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") -MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") -MM_Icons/icons/2D_preview = SubResource("AtlasTexture_1yu4y") -MM_Icons/icons/3D_preview = SubResource("AtlasTexture_ao7ds") -MM_Icons/icons/3D_preview_control = SubResource("AtlasTexture_hht3q") -MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs") -MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak") -MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd") -MM_Icons/icons/environment = SubResource("AtlasTexture_x8swe") -MM_Icons/icons/model = SubResource("AtlasTexture_dsr33") -MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od") -MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd") -MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") -MM_MainBackground/base_type = &"PanelContainer" -MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5") -MM_NodeCheckbox/base_type = &"Button" -MM_NodeFloatEdit/base_type = &"Button" -MM_NodeFloatEdit/font_sizes/font_size = 15 -MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_80ifi") -MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_ut30c") -MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_b7ktg") -MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_hgk0b") -MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_0b15u") -MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_r1sff") -MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_8fogc") -MM_NodeGradientEdit/base_type = &"Button" -MM_NodeGradientEditPopup/base_type = &"PanelContainer" -MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs") -MM_NodeImageEdit/base_type = &"Button" -MM_NodeOptionEdit/base_type = &"OptionButton" -MM_NodeOptionEdit/colors/icon_disabled_color = Color(1, 1, 1, 0.4) -MM_NodeOptionEdit/colors/icon_focus_color = Color(1, 1, 1, 1) -MM_NodeOptionEdit/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) -MM_NodeOptionEdit/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) -MM_NodeOptionEdit/colors/icon_normal_color = Color(1, 1, 1, 1) -MM_NodeOptionEdit/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) -MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3") -MM_NodeOptionEditPopup/base_type = &"PopupMenu" -MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py") -MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_j32ac") -MM_NodePortGroup/constants/width = 4 -MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_k2ns1") -MM_NodePropertyLabel/base_type = &"Label" -MM_NodePropertyLabel/font_sizes/font_size = 15 -MM_PanelBackground/base_type = &"PanelContainer" -MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1") -MM_ProjectsBackground/base_type = &"Panel" -MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_1k0sx") -MM_Reroute/base_type = &"GraphNode" -MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb") -MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y") -MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp") -MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb") -MM_ReroutePreview/base_type = &"GraphNode" -MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1") -MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k") -MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj") -MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj") -MM_StatusBarBackground/base_type = &"PanelContainer" -MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_xeqlk") -Panel/styles/panel = SubResource("StyleBoxFlat_dscxc") -PopupMenu/colors/font_accelerator_color = Color(0.7, 0.7, 0.7, 0.8) -PopupMenu/colors/font_color = Color(0.875, 0.875, 0.875, 1) -PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8) -PopupMenu/colors/font_hover_color = Color(0.875, 0.875, 0.875, 1) -PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x") -PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4") -PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi") -PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4") -PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty") -PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo") -PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u") -PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn") -PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu") -SpinBox/colors/down_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) -SpinBox/colors/down_hover_icon_modulate = Color(1, 1, 1, 1) -SpinBox/colors/down_icon_modulate = Color(1, 1, 1, 1) -SpinBox/colors/down_pressed_icon_modulate = Color(1, 1, 1, 1) -SpinBox/colors/up_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) -SpinBox/colors/up_hover_icon_modulate = Color(1, 1, 1, 1) -SpinBox/colors/up_icon_modulate = Color(1, 1, 1, 1) -SpinBox/colors/up_pressed_icon_modulate = Color(1, 1, 1, 1) -SpinBox/styles/down_background_hovered = SubResource("StyleBoxFlat_8sgsn") -SpinBox/styles/down_background_pressed = SubResource("StyleBoxFlat_kx6bo") -SpinBox/styles/up_background_hovered = SubResource("StyleBoxFlat_re015") -SpinBox/styles/up_background_pressed = SubResource("StyleBoxFlat_6dsbu") -TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) -TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1) -TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1) -TabBar/colors/font_unselected_color = Color(0.7, 0.7, 0.7, 1) -TabBar/constants/h_separation = 6 -TabBar/icons/close = SubResource("AtlasTexture_1wpt7") -TabBar/styles/tab_focus = SubResource("StyleBoxFlat_ax2cv") -TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_708uu") -TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv") -TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_w1kc3") -TabContainer/styles/panel = SubResource("StyleBoxFlat_wc388") -TooltipLabel/font_sizes/font_size = 15 -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_5rnro") -Tree/colors/font_color = Color(0.7, 0.7, 0.7, 1) -Tree/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) -Tree/colors/font_selected_color = Color(1, 1, 1, 1) -Tree/constants/draw_guides = 0 -Tree/constants/draw_relationship_lines = 0 -Tree/styles/focus = SubResource("StyleBoxEmpty_iwtn1") -Tree/styles/panel = SubResource("StyleBoxEmpty_yrroa") -Tree/styles/selected = SubResource("StyleBoxFlat_x5l5s") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_x5l5s") +script = ExtResource("5_yjidp") +base_theme = ExtResource("3_xjelh") +font_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")]) +icon_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo"), SubResource("Resource_5oh4i")]) +theme_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")]) diff --git a/material_maker/theme/default light.tres b/material_maker/theme/default light.tres index 2c903adb5..0e9c1569e 100644 --- a/material_maker/theme/default light.tres +++ b/material_maker/theme/default light.tres @@ -1,618 +1,9 @@ -[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=101 format=3 uid="uid://u00kx2lkkx8j"] +[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=34 format=3 uid="uid://u00kx2lkkx8j"] -[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_de56q"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="2_gdmjv"] -[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default dark.tres" id="3_e7v0o"] +[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default.tres" id="1_ugsao"] [ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/color_swap.gd" id="4_rhf2q"] [ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/enhanced_theme.gd" id="5_fagh3"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xy5i4"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hus4k"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_roelu"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kkdn5"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l4of7"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4k3qb"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d5qf7"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.0666667, 0.0705882, 0.0784314, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lpagw"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kuqq6"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.839216, 0.839216, 0.839216, 1) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145762, 0.145765, 0.164989, 1) -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p14gl"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.839216, 0.839216, 0.839216, 1) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.745098, 0.752941, 0.772549, 1) -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5i3qr"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.490196, 0.505882, 0.545098, 1) -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0ya5f"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.490196, 0.505882, 0.545098, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_color = Color(0.745098, 0.752941, 0.772549, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_detail = 4 - -[sub_resource type="FontVariation" id="FontVariation_clsk5"] -base_font = ExtResource("1_de56q") -variation_embolden = 0.8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3n2pc"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1bwbq"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mkyjc"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6mlnr"] -content_margin_left = 6.0 -content_margin_top = 3.0 -content_margin_right = 6.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_axdjs"] -content_margin_left = 6.0 -content_margin_top = 3.0 -content_margin_right = 6.0 -content_margin_bottom = 3.0 -bg_color = Color(0.8, 0.8, 0.8, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ssph1"] -content_margin_left = 6.0 -content_margin_top = 3.0 -content_margin_right = 6.0 -content_margin_bottom = 3.0 -bg_color = Color(0.8, 0.8, 0.8, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2txad"] -content_margin_left = 4.0 -content_margin_top = 4.0 -content_margin_right = 4.0 -content_margin_bottom = 4.0 -bg_color = Color(0.0928685, 0.0957873, 0.107466, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.359069, 0.359069, 0.359069, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4tvdc"] -content_margin_left = 10.0 -content_margin_top = 2.0 -content_margin_right = 10.0 -content_margin_bottom = 2.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a2r0m"] -content_margin_left = 10.0 -content_margin_top = 2.0 -content_margin_right = 10.0 -content_margin_bottom = 2.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i67ey"] -content_margin_left = 10.0 -content_margin_top = 10.0 -content_margin_right = 10.0 -content_margin_bottom = 10.0 -bg_color = Color(0.917647, 0.917647, 0.917647, 1) - -[sub_resource type="FontVariation" id="FontVariation_qdkrv"] -base_font = ExtResource("1_de56q") -opentype_features = { -1953396077: 1 -} - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lsxi0"] -bg_color = Color(1, 1, 1, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kt7c2"] -bg_color = Color(0.657163, 0.305796, 0.703349, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8gkke"] -bg_color = Color(0.605934, 0.266905, 0.650558, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hnrxa"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.490196, 0.505882, 0.545098, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ueqls"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.67451, 0.67451, 0.67451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qf0cv"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_q6w3u"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.839216, 0.839216, 0.839216, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145098, 0.145098, 0.164706, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l34mb"] -content_margin_left = 2.0 -content_margin_top = 2.0 -content_margin_right = 2.0 -content_margin_bottom = 2.0 -bg_color = Color(0.207271, 0.216386, 0.234614, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mp37d"] -content_margin_left = 2.0 -content_margin_top = 2.0 -content_margin_right = 2.0 -content_margin_bottom = 2.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.207843, 0.215686, 0.235294, 1) -corner_radius_top_left = 2 -corner_radius_top_right = 2 -corner_radius_bottom_right = 2 -corner_radius_bottom_left = 2 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wj152"] -bg_color = Color(0.8, 0.8, 0.8, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -corner_detail = 1 -shadow_color = Color(0, 0, 0, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d58m1"] -content_margin_left = 6.0 -content_margin_top = 6.0 -content_margin_right = 6.0 -content_margin_bottom = 6.0 -bg_color = Color(0.756863, 0.756863, 0.756863, 1) -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nn6e1"] -bg_color = Color(0.756863, 0.756863, 0.756863, 1) -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2sr3g"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.756863, 0.756863, 0.756863, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y4tl1"] -content_margin_left = 6.0 -content_margin_top = 6.0 -content_margin_right = 6.0 -content_margin_bottom = 6.0 -bg_color = Color(0.8, 0.8, 0.8, 1) - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_run81"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.627451, 0.627451, 0.627451, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aqne5"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0.8, 0.8, 0.8, 1) - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_83jq2"] -load_path = "res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex" - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_7t6dh"] -load_path = "res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex" - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_r8ueu"] -load_path = "res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex" - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hx68e"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_230oy"] -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_radius_top_left = 24 -corner_radius_top_right = 24 -corner_radius_bottom_right = 24 -corner_radius_bottom_left = 24 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_n7all"] - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iiy0y"] - -[sub_resource type="FontFile" id="FontFile_ce6mk"] -fallbacks = Array[Font]([ExtResource("2_gdmjv")]) -cache/0/16/0/ascent = 0.0 -cache/0/16/0/descent = 0.0 -cache/0/16/0/underline_position = 0.0 -cache/0/16/0/underline_thickness = 0.0 -cache/0/16/0/scale = 1.0 -cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_y0qlj"] -load_path = "res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex" - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_afins"] -load_path = "res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex" - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_al5dg"] -load_path = "res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex" - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_txtui"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7d6sf"] -content_margin_left = 0.0 -content_margin_top = 0.0 -content_margin_right = 0.0 -content_margin_bottom = 0.0 -bg_color = Color(0.376471, 0.376471, 0.376471, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 1, 1, 1) -corner_detail = 1 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_3g07q"] - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_oyjia"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6ji8m"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.8, 0.8, 0.8, 1) -draw_center = false -border_width_top = 2 -border_color = Color(0.266667, 0.278431, 0.301961, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4rvke"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.145098, 0.14902, 0.164706, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7hx0n"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.682353, 0.682353, 0.682353, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3y6iv"] -content_margin_left = 7.0 -content_margin_top = 5.0 -content_margin_right = 7.0 -content_margin_bottom = 5.0 -bg_color = Color(0.854902, 0.854902, 0.854902, 1) -corner_radius_top_left = 3 -corner_radius_top_right = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7mlcd"] -content_margin_left = 5.0 -content_margin_top = 5.0 -content_margin_right = 5.0 -content_margin_bottom = 5.0 -bg_color = Color(0.756863, 0.756863, 0.756863, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_iu5xo"] -content_margin_left = 10.0 -content_margin_top = 8.0 -content_margin_right = 10.0 -content_margin_bottom = 8.0 -bg_color = Color(0.839216, 0.839216, 0.839216, 1) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.145098, 0.145098, 0.164706, 1) -corner_radius_top_left = 4 -corner_radius_top_right = 4 -corner_radius_bottom_right = 4 -corner_radius_bottom_left = 4 -corner_detail = 4 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_h8a7j"] -content_margin_left = 4.0 - -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lebvd"] -content_margin_left = 4.0 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mcv0o"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0, 0, 0, 0.6) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uf4s7"] -content_margin_left = 3.0 -content_margin_top = 3.0 -content_margin_right = 3.0 -content_margin_bottom = 3.0 -bg_color = Color(0, 0, 0, 0.6) -corner_radius_top_left = 3 -corner_radius_top_right = 3 -corner_radius_bottom_right = 3 -corner_radius_bottom_left = 3 - [sub_resource type="Resource" id="Resource_silay"] script = ExtResource("4_rhf2q") name = "Main Font Color" @@ -794,150 +185,8 @@ orig = Color(0.356863, 0.356863, 0.356863, 1) target = Color(0.601223, 0.601223, 0.601223, 1) [resource] -Button/colors/font_color = Color(0.105882, 0.105882, 0.105882, 1) -Button/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961) -Button/colors/font_focus_color = Color(0.0901961, 0.0901961, 0.0901961, 1) -Button/colors/font_hover_color = Color(0.0901961, 0.0901961, 0.0901961, 1) -Button/colors/font_hover_pressed_color = Color(0, 0, 0, 1) -Button/colors/font_pressed_color = Color(0, 0, 0, 1) -Button/colors/icon_hover_pressed_color = Color(0.874128, 0.694643, 0.972002, 1) -Button/colors/icon_pressed_color = Color(0.792157, 0.478431, 0.94902, 1) -Button/styles/disabled = SubResource("StyleBoxFlat_xy5i4") -Button/styles/focus = SubResource("StyleBoxFlat_hus4k") -Button/styles/hover = SubResource("StyleBoxFlat_roelu") -Button/styles/hover_pressed = SubResource("StyleBoxFlat_kkdn5") -Button/styles/normal = SubResource("StyleBoxFlat_l4of7") -Button/styles/pressed = SubResource("StyleBoxFlat_4k3qb") -GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1) -GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1) -GraphEdit/constants/port_hotzone_inner_extent = 8 -GraphEdit/constants/port_hotzone_outer_extent = 50 -GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_d5qf7") -GraphEdit/styles/panel = SubResource("StyleBoxEmpty_lpagw") -GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1) -GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1) -GraphNode/constants/portpreview_radius = 6 -GraphNode/constants/portpreview_width = 15 -GraphNode/styles/panel = SubResource("StyleBoxFlat_kuqq6") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_p14gl") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_5i3qr") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_0ya5f") -GraphNodeTitleLabel/colors/font_outline_color = Color(0.890196, 0.890196, 0.890196, 1) -GraphNodeTitleLabel/colors/font_shadow_color = Color(0.890196, 0.890196, 0.890196, 1) -GraphNodeTitleLabel/constants/outline_size = 4 -GraphNodeTitleLabel/constants/shadow_outline_size = 4 -GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_clsk5") -ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412) -ItemList/styles/hovered = SubResource("StyleBoxFlat_3n2pc") -ItemList/styles/selected = SubResource("StyleBoxFlat_1bwbq") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_mkyjc") -Label/colors/font_color = Color(0, 0, 0, 1) -LineEdit/styles/focus = SubResource("StyleBoxFlat_6mlnr") -LineEdit/styles/normal = SubResource("StyleBoxFlat_axdjs") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_ssph1") -MM_AddNodePanel/base_type = &"PanelContainer" -MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_2txad") -MM_AddNodePanelList/base_type = &"ItemList" -MM_FilterLineEdit/base_type = &"LineEdit" -MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_4tvdc") -MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_a2r0m") -MM_FlexibleTab/base_type = &"TabBar" -MM_FlexibleTab/constants/separation = 3 -MM_MainBackground/base_type = &"PanelContainer" -MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_i67ey") -MM_NodeCheckbox/base_type = &"Button" -MM_NodeFloatEdit/base_type = &"Button" -MM_NodeFloatEdit/font_sizes/font_size = 15 -MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_qdkrv") -MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_lsxi0") -MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_kt7c2") -MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_8gkke") -MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_hnrxa") -MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_ueqls") -MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_qf0cv") -MM_NodeGradientEdit/base_type = &"Button" -MM_NodeGradientEditPopup/base_type = &"PanelContainer" -MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_q6w3u") -MM_NodeImageEdit/base_type = &"Button" -MM_NodeOptionEdit/base_type = &"OptionButton" -MM_NodeOptionEditPopup/base_type = &"PopupMenu" -MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_l34mb") -MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_mp37d") -MM_NodePortGroup/constants/width = 4 -MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_wj152") -MM_NodePropertyLabel/base_type = &"Label" -MM_NodePropertyLabel/font_sizes/font_size = 15 -MM_PanelBackground/base_type = &"PanelContainer" -MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_d58m1") -MM_ProjectsBackground/base_type = &"Panel" -MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_nn6e1") -MM_StatusBarBackground/base_type = &"PanelContainer" -MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_2sr3g") -Panel/styles/panel = SubResource("StyleBoxFlat_y4tl1") -PopupMenu/colors/font_accelerator_color = Color(0.32549, 0.32549, 0.32549, 0.8) -PopupMenu/colors/font_color = Color(0.105882, 0.105882, 0.105882, 1) -PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8) -PopupMenu/colors/font_hover_color = Color(0.105882, 0.105882, 0.105882, 1) -PopupMenu/styles/hover = SubResource("StyleBoxFlat_run81") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_aqne5") -Reroute/colors/close_color = Color(1, 1, 1, 0.7) -Reroute/colors/resizer_color = Color(1, 1, 1, 0.7) -Reroute/colors/title_color = Color(1, 1, 1, 1) -Reroute/constants/close_h_offset = 20 -Reroute/constants/close_offset = 20 -Reroute/constants/port_h_offset = 0 -Reroute/constants/port_offset = 0 -Reroute/constants/separation = 1 -Reroute/constants/title_h_offset = -16 -Reroute/constants/title_offset = 20 -Reroute/icons/close = SubResource("CompressedTexture2D_83jq2") -Reroute/icons/port = SubResource("CompressedTexture2D_7t6dh") -Reroute/icons/resizer = SubResource("CompressedTexture2D_r8ueu") -Reroute/styles/panel = SubResource("StyleBoxFlat_hx68e") -Reroute/styles/panel_selected = SubResource("StyleBoxFlat_230oy") -Reroute/styles/titlebar = SubResource("StyleBoxEmpty_n7all") -Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_iiy0y") -ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7) -ReroutePreview/colors/title_color = Color(1, 1, 1, 1) -ReroutePreview/constants/close_h_offset = 20 -ReroutePreview/constants/close_offset = 20 -ReroutePreview/constants/port_h_offset = 0 -ReroutePreview/constants/port_offset = 0 -ReroutePreview/constants/separation = 1 -ReroutePreview/constants/title_h_offset = -16 -ReroutePreview/constants/title_offset = 20 -ReroutePreview/fonts/title_font = SubResource("FontFile_ce6mk") -ReroutePreview/icons/close = SubResource("CompressedTexture2D_y0qlj") -ReroutePreview/icons/port = SubResource("CompressedTexture2D_afins") -ReroutePreview/icons/resizer = SubResource("CompressedTexture2D_al5dg") -ReroutePreview/styles/panel = SubResource("StyleBoxFlat_txtui") -ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_7d6sf") -ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_3g07q") -ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_oyjia") -TabBar/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961) -TabBar/colors/font_hovered_color = Color(0.0901961, 0.0901961, 0.0901961, 1) -TabBar/colors/font_selected_color = Color(0.0901961, 0.0901961, 0.0901961, 1) -TabBar/colors/font_unselected_color = Color(0.0862745, 0.0862745, 0.0862745, 1) -TabBar/constants/h_separation = 6 -TabBar/styles/tab_focus = SubResource("StyleBoxFlat_6ji8m") -TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_4rvke") -TabBar/styles/tab_selected = SubResource("StyleBoxFlat_7hx0n") -TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_3y6iv") -TabContainer/styles/panel = SubResource("StyleBoxFlat_7mlcd") -TooltipLabel/font_sizes/font_size = 15 -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_iu5xo") -Tree/colors/font_color = Color(0.0862745, 0.0862745, 0.0862745, 1) -Tree/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961) -Tree/colors/font_selected_color = Color(0, 0, 0, 1) -Tree/constants/draw_guides = 0 -Tree/constants/draw_relationship_lines = 0 -Tree/styles/focus = SubResource("StyleBoxEmpty_h8a7j") -Tree/styles/panel = SubResource("StyleBoxEmpty_lebvd") -Tree/styles/selected = SubResource("StyleBoxFlat_mcv0o") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_uf4s7") script = ExtResource("5_fagh3") -base_theme = ExtResource("3_e7v0o") +base_theme = ExtResource("1_ugsao") font_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")]) icon_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo"), SubResource("Resource_5oh4i")]) theme_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")]) diff --git a/material_maker/theme/default.tres b/material_maker/theme/default.tres new file mode 100644 index 000000000..069576183 --- /dev/null +++ b/material_maker/theme/default.tres @@ -0,0 +1,941 @@ +[gd_resource type="Theme" load_steps=99 format=3 uid="uid://b628lwfk6ig2c"] + +[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"] +[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_s43fy"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"] +content_margin_left = 6.0 +content_margin_top = 6.0 +content_margin_right = 6.0 +content_margin_bottom = 6.0 +bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kvrsn"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.490196, 0.505882, 0.545098, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2qiie"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rxikb"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"] +atlas = ExtResource("1_s43fy") +region = Rect2(80, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"] +atlas = ExtResource("1_s43fy") +region = Rect2(16, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"] +atlas = ExtResource("1_s43fy") +region = Rect2(0, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"] +atlas = ExtResource("1_s43fy") +region = Rect2(96, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"] +atlas = ExtResource("1_s43fy") +region = Rect2(0, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"] +atlas = ExtResource("1_s43fy") +region = Rect2(16, 128, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"] +atlas = ExtResource("1_s43fy") +region = Rect2(80, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"] +atlas = ExtResource("1_s43fy") +region = Rect2(96, 96, 16, 16) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_62l4s"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uwck0"] +content_margin_left = 10.0 +content_margin_top = 8.0 +content_margin_right = 10.0 +content_margin_bottom = 8.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.145762, 0.145765, 0.164989, 1) +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ryqkj"] +content_margin_left = 10.0 +content_margin_top = 8.0 +content_margin_right = 10.0 +content_margin_bottom = 8.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.745098, 0.752941, 0.772549, 1) +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqse"] +content_margin_left = 5.0 +content_margin_top = 5.0 +content_margin_right = 5.0 +content_margin_bottom = 5.0 +bg_color = Color(0.490196, 0.505882, 0.545098, 1) +border_color = Color(0.490196, 0.505882, 0.545098, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ru0kh"] +content_margin_left = 5.0 +content_margin_top = 5.0 +content_margin_right = 5.0 +content_margin_bottom = 5.0 +bg_color = Color(0.490196, 0.505882, 0.545098, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_color = Color(0.745098, 0.752941, 0.772549, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_detail = 4 + +[sub_resource type="FontVariation" id="FontVariation_na26k"] +base_font = ExtResource("1_5tfb1") +variation_embolden = 0.8 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m2221"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_attdh"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s437y"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.490196, 0.505882, 0.545098, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k8x4n"] +content_margin_left = 10.0 +content_margin_top = 2.0 +content_margin_right = 10.0 +content_margin_bottom = 2.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k7e83"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +bg_color = Color(0.117647, 0.121569, 0.133333, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f0kci"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(0.0928685, 0.0957873, 0.107466, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.359069, 0.359069, 0.359069, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dyhk7"] +content_margin_left = 10.0 +content_margin_top = 2.0 +content_margin_right = 10.0 +content_margin_bottom = 2.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mv8c7"] +content_margin_left = 10.0 +content_margin_top = 2.0 +content_margin_right = 10.0 +content_margin_bottom = 2.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 +corner_detail = 4 + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 0, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yu4y"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 128, 16, 16) +metadata/scale = 2.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao7ds"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 128, 16, 16) +metadata/scale = 2.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_hht3q"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 128, 16, 16) +metadata/scale = 2.0 +metadata/recolor = true + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 48, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 16, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8swe"] +atlas = ExtResource("1_s43fy") +region = Rect2(80, 64, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsr33"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 64, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 80, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 0, 16, 16) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"] +content_margin_left = 10.0 +content_margin_top = 10.0 +content_margin_right = 10.0 +content_margin_bottom = 10.0 +bg_color = Color(0.0427646, 0.0427646, 0.0456467, 1) + +[sub_resource type="FontVariation" id="FontVariation_80ifi"] +base_font = ExtResource("1_5tfb1") +opentype_features = { +1953396077: 1 +} + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ut30c"] +bg_color = Color(1, 1, 1, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_b7ktg"] +bg_color = Color(0.355314, 0.355314, 0.355314, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hgk0b"] +bg_color = Color(0.303233, 0.303233, 0.303233, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0b15u"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.490196, 0.505882, 0.545098, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r1sff"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8fogc"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omwbs"] +content_margin_left = 10.0 +content_margin_top = 8.0 +content_margin_right = 10.0 +content_margin_bottom = 8.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.145098, 0.145098, 0.164706, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 16, 16, 16) +metadata/recolor = false + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"] +content_margin_left = 2.0 +content_margin_top = 2.0 +content_margin_right = 2.0 +content_margin_bottom = 2.0 +bg_color = Color(0.207271, 0.216386, 0.234614, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j32ac"] +content_margin_left = 2.0 +content_margin_top = 2.0 +content_margin_right = 2.0 +content_margin_bottom = 2.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.207843, 0.215686, 0.235294, 1) +corner_radius_top_left = 2 +corner_radius_top_right = 2 +corner_radius_bottom_right = 2 +corner_radius_bottom_left = 2 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k2ns1"] +bg_color = Color(0.8, 0.8, 0.8, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_detail = 1 +shadow_color = Color(0, 0, 0, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uujf1"] +content_margin_left = 6.0 +content_margin_top = 6.0 +content_margin_right = 6.0 +content_margin_bottom = 6.0 +bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1k0sx"] +bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"] +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_radius_top_left = 24 +corner_radius_top_right = 24 +corner_radius_bottom_right = 24 +corner_radius_bottom_left = 24 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"] +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xeqlk"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dscxc"] +content_margin_left = 6.0 +content_margin_top = 6.0 +content_margin_right = 6.0 +content_margin_bottom = 6.0 +bg_color = Color(0.117647, 0.121569, 0.133333, 1) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"] +atlas = ExtResource("1_s43fy") +region = Rect2(80, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"] +atlas = ExtResource("1_s43fy") +region = Rect2(112, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"] +atlas = ExtResource("1_s43fy") +region = Rect2(16, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"] +atlas = ExtResource("1_s43fy") +region = Rect2(0, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"] +atlas = ExtResource("1_s43fy") +region = Rect2(32, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 96, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"] +atlas = ExtResource("1_s43fy") +region = Rect2(64, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"] +atlas = ExtResource("1_s43fy") +region = Rect2(96, 112, 16, 16) +metadata/recolor = false + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8p2hu"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.117647, 0.121569, 0.133333, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8sgsn"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kx6bo"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_re015"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6dsbu"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.176471, 0.192157, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"] +atlas = ExtResource("1_s43fy") +region = Rect2(48, 0, 16, 16) +metadata/recolor = false + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"] +content_margin_left = 7.0 +content_margin_top = 5.0 +content_margin_right = 7.0 +content_margin_bottom = 5.0 +bg_color = Color(0.117647, 0.121569, 0.133333, 1) +draw_center = false +border_width_top = 2 +border_color = Color(0.266667, 0.278431, 0.301961, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_708uu"] +content_margin_left = 7.0 +content_margin_top = 5.0 +content_margin_right = 7.0 +content_margin_bottom = 5.0 +bg_color = Color(0.145098, 0.14902, 0.164706, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r4jxv"] +content_margin_left = 7.0 +content_margin_top = 5.0 +content_margin_right = 7.0 +content_margin_bottom = 5.0 +bg_color = Color(0.129412, 0.137255, 0.152941, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w1kc3"] +content_margin_left = 7.0 +content_margin_top = 5.0 +content_margin_right = 7.0 +content_margin_bottom = 5.0 +bg_color = Color(0.109804, 0.113725, 0.12549, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc388"] +content_margin_left = 5.0 +content_margin_top = 5.0 +content_margin_right = 5.0 +content_margin_bottom = 5.0 +bg_color = Color(0.0941176, 0.0980392, 0.101961, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5rnro"] +content_margin_left = 10.0 +content_margin_top = 8.0 +content_margin_right = 10.0 +content_margin_bottom = 8.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.145098, 0.145098, 0.164706, 1) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 +corner_detail = 4 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iwtn1"] +content_margin_left = 4.0 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yrroa"] +content_margin_left = 4.0 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x5l5s"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[resource] +default_font = ExtResource("1_5tfb1") +default_font_size = 16 +AcceptDialog/styles/panel = SubResource("StyleBoxFlat_telh7") +Button/colors/font_color = Color(0.875, 0.875, 0.875, 1) +Button/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) +Button/colors/font_focus_color = Color(0.95, 0.95, 0.95, 1) +Button/colors/font_hover_color = Color(0.95, 0.95, 0.95, 1) +Button/colors/font_hover_pressed_color = Color(1, 1, 1, 1) +Button/colors/font_pressed_color = Color(1, 1, 1, 1) +Button/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +Button/colors/icon_focus_color = Color(1, 1, 1, 1) +Button/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +Button/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +Button/colors/icon_normal_color = Color(1, 1, 1, 1) +Button/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) +Button/styles/disabled = SubResource("StyleBoxFlat_inl5r") +Button/styles/focus = SubResource("StyleBoxFlat_kvrsn") +Button/styles/hover = SubResource("StyleBoxFlat_2qiie") +Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie") +Button/styles/normal = SubResource("StyleBoxFlat_rxikb") +Button/styles/pressed = SubResource("StyleBoxFlat_rxikb") +CheckBox/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +CheckBox/colors/icon_focus_color = Color(1, 1, 1, 1) +CheckBox/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +CheckBox/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +CheckBox/colors/icon_normal_color = Color(1, 1, 1, 1) +CheckBox/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) +CheckBox/icons/checked = SubResource("AtlasTexture_chskd") +CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub") +CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu") +CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3") +CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87") +CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7") +CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2") +CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy") +GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1) +GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1) +GraphEdit/constants/port_hotzone_inner_extent = 8 +GraphEdit/constants/port_hotzone_outer_extent = 50 +GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u") +GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34") +GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b") +GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun") +GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh") +GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2") +GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_pxlc8") +GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s") +GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1) +GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1) +GraphNode/constants/portpreview_radius = 6 +GraphNode/constants/portpreview_width = 15 +GraphNode/styles/panel = SubResource("StyleBoxFlat_uwck0") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_ryqkj") +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_imqse") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_ru0kh") +GraphNodeTitleLabel/colors/font_outline_color = Color(0.168627, 0.176471, 0.192157, 1) +GraphNodeTitleLabel/colors/font_shadow_color = Color(0.168627, 0.176471, 0.192157, 1) +GraphNodeTitleLabel/constants/outline_size = 4 +GraphNodeTitleLabel/constants/shadow_outline_size = 4 +GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_na26k") +ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412) +ItemList/styles/hovered = SubResource("StyleBoxFlat_m2221") +ItemList/styles/selected = SubResource("StyleBoxFlat_attdh") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_attdh") +Label/colors/font_color = Color(1, 1, 1, 1) +LineEdit/colors/font_color = Color(0.875, 0.875, 0.875, 1) +LineEdit/colors/font_placeholder_color = Color(0.875, 0.875, 0.875, 0.6) +LineEdit/colors/font_selected_color = Color(1, 1, 1, 1) +LineEdit/colors/font_uneditable_color = Color(0.875, 0.875, 0.875, 0.5) +LineEdit/colors/selection_color = Color(0.5, 0.5, 0.5, 1) +LineEdit/styles/focus = SubResource("StyleBoxFlat_s437y") +LineEdit/styles/normal = SubResource("StyleBoxFlat_k8x4n") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_k7e83") +MM_AddNodePanel/base_type = &"PanelContainer" +MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_f0kci") +MM_AddNodePanelList/base_type = &"ItemList" +MM_FilterLineEdit/base_type = &"LineEdit" +MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7") +MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_mv8c7") +MM_FlexibleTab/base_type = &"TabBar" +MM_FlexibleTab/constants/separation = 3 +MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx") +MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse") +MM_Icons/icons/2D_preview = SubResource("AtlasTexture_1yu4y") +MM_Icons/icons/3D_preview = SubResource("AtlasTexture_ao7ds") +MM_Icons/icons/3D_preview_control = SubResource("AtlasTexture_hht3q") +MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs") +MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak") +MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd") +MM_Icons/icons/environment = SubResource("AtlasTexture_x8swe") +MM_Icons/icons/model = SubResource("AtlasTexture_dsr33") +MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od") +MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd") +MM_Icons/icons/settings = SubResource("AtlasTexture_33srw") +MM_MainBackground/base_type = &"PanelContainer" +MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5") +MM_NodeCheckbox/base_type = &"Button" +MM_NodeFloatEdit/base_type = &"Button" +MM_NodeFloatEdit/font_sizes/font_size = 15 +MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_80ifi") +MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_ut30c") +MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_b7ktg") +MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_hgk0b") +MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_0b15u") +MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_r1sff") +MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_8fogc") +MM_NodeGradientEdit/base_type = &"Button" +MM_NodeGradientEditPopup/base_type = &"PanelContainer" +MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs") +MM_NodeImageEdit/base_type = &"Button" +MM_NodeOptionEdit/base_type = &"OptionButton" +MM_NodeOptionEdit/colors/icon_disabled_color = Color(1, 1, 1, 0.4) +MM_NodeOptionEdit/colors/icon_focus_color = Color(1, 1, 1, 1) +MM_NodeOptionEdit/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1) +MM_NodeOptionEdit/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1) +MM_NodeOptionEdit/colors/icon_normal_color = Color(1, 1, 1, 1) +MM_NodeOptionEdit/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1) +MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3") +MM_NodeOptionEditPopup/base_type = &"PopupMenu" +MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py") +MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_j32ac") +MM_NodePortGroup/constants/width = 4 +MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_k2ns1") +MM_NodePropertyLabel/base_type = &"Label" +MM_NodePropertyLabel/font_sizes/font_size = 15 +MM_PanelBackground/base_type = &"PanelContainer" +MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1") +MM_ProjectsBackground/base_type = &"Panel" +MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_1k0sx") +MM_Reroute/base_type = &"GraphNode" +MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb") +MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y") +MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp") +MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb") +MM_ReroutePreview/base_type = &"GraphNode" +MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1") +MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k") +MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj") +MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj") +MM_StatusBarBackground/base_type = &"PanelContainer" +MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_xeqlk") +Panel/styles/panel = SubResource("StyleBoxFlat_dscxc") +PopupMenu/colors/font_accelerator_color = Color(0.7, 0.7, 0.7, 0.8) +PopupMenu/colors/font_color = Color(0.875, 0.875, 0.875, 1) +PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8) +PopupMenu/colors/font_hover_color = Color(0.875, 0.875, 0.875, 1) +PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x") +PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4") +PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi") +PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4") +PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty") +PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo") +PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u") +PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn") +PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu") +SpinBox/colors/down_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) +SpinBox/colors/down_hover_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/down_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/down_pressed_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5) +SpinBox/colors/up_hover_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_icon_modulate = Color(1, 1, 1, 1) +SpinBox/colors/up_pressed_icon_modulate = Color(1, 1, 1, 1) +SpinBox/styles/down_background_hovered = SubResource("StyleBoxFlat_8sgsn") +SpinBox/styles/down_background_pressed = SubResource("StyleBoxFlat_kx6bo") +SpinBox/styles/up_background_hovered = SubResource("StyleBoxFlat_re015") +SpinBox/styles/up_background_pressed = SubResource("StyleBoxFlat_6dsbu") +TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) +TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1) +TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1) +TabBar/colors/font_unselected_color = Color(0.7, 0.7, 0.7, 1) +TabBar/constants/h_separation = 6 +TabBar/icons/close = SubResource("AtlasTexture_1wpt7") +TabBar/styles/tab_focus = SubResource("StyleBoxFlat_ax2cv") +TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_708uu") +TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv") +TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_w1kc3") +TabContainer/styles/panel = SubResource("StyleBoxFlat_wc388") +TooltipLabel/font_sizes/font_size = 15 +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_5rnro") +Tree/colors/font_color = Color(0.7, 0.7, 0.7, 1) +Tree/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5) +Tree/colors/font_selected_color = Color(1, 1, 1, 1) +Tree/constants/draw_guides = 0 +Tree/constants/draw_relationship_lines = 0 +Tree/styles/focus = SubResource("StyleBoxEmpty_iwtn1") +Tree/styles/panel = SubResource("StyleBoxEmpty_yrroa") +Tree/styles/selected = SubResource("StyleBoxFlat_x5l5s") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_x5l5s") diff --git a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd index 85a1440d2..a6de505f7 100644 --- a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd +++ b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd @@ -1,4 +1,3 @@ -@tool extends Theme class_name EnhancedTheme From 4c7f66cf6d6cbfb2ff6f5e3d601b53aceafa9621 Mon Sep 17 00:00:00 2001 From: Jowan-Spooner Date: Sat, 16 Nov 2024 15:22:31 +0100 Subject: [PATCH 09/10] adding more icons --- material_maker/theme/default_theme_icons.svg | 515 ++++++++++++++++++- 1 file changed, 511 insertions(+), 4 deletions(-) diff --git a/material_maker/theme/default_theme_icons.svg b/material_maker/theme/default_theme_icons.svg index 01b57710d..df5317c57 100644 --- a/material_maker/theme/default_theme_icons.svg +++ b/material_maker/theme/default_theme_icons.svg @@ -28,15 +28,15 @@ inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" showgrid="true" - inkscape:zoom="16" - inkscape:cx="74.09375" - inkscape:cy="126.125" + inkscape:zoom="11.313709" + inkscape:cx="61.253125" + inkscape:cy="152.20473" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" - inkscape:current-layer="layer61"> + inkscape:current-layer="g32-3"> + + + + + + + + + + + + + + + + + + + + + + + + @@ -1399,11 +1463,454 @@ x2="78.850395" y2="138" gradientTransform="rotate(-89.821591,71.711023,136.31052)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Date: Tue, 17 Dec 2024 19:58:16 +0100 Subject: [PATCH 10/10] More Icons Already includes a bunch of icons that aren't actually implemented yet (e.g. painting icons) for a follow up PR that tries to remove all final icon sheets in favor of the new one. --- material_maker/theme/default_theme_icons.svg | 1538 ++++++++++++++---- 1 file changed, 1210 insertions(+), 328 deletions(-) diff --git a/material_maker/theme/default_theme_icons.svg b/material_maker/theme/default_theme_icons.svg index df5317c57..7171625b2 100644 --- a/material_maker/theme/default_theme_icons.svg +++ b/material_maker/theme/default_theme_icons.svg @@ -28,15 +28,15 @@ inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" showgrid="true" - inkscape:zoom="11.313709" - inkscape:cx="61.253125" - inkscape:cy="152.20473" + inkscape:zoom="5.6568543" + inkscape:cx="56.745319" + inkscape:cy="166.8772" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" - inkscape:current-layer="g32-3"> + inkscape:current-layer="layer79"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1557,330 +1760,1009 @@ y1="51.125153" x2="93.22023" y2="51.125153" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +