diff --git a/addons/material_maker/engine/nodes/gen_base.gd b/addons/material_maker/engine/nodes/gen_base.gd index 6e8738f70..8d00776d2 100644 --- a/addons/material_maker/engine/nodes/gen_base.gd +++ b/addons/material_maker/engine/nodes/gen_base.gd @@ -319,7 +319,10 @@ func get_output_defs(_show_hidden : bool = false) -> Array: return [] func get_source(input_index : int) -> OutputPort: - return get_parent().get_port_source(name, input_index) + var parent : MMGenGraph = get_parent() + if parent == null: + return null + return parent.get_port_source(name, input_index) func get_targets(output_index : int) -> Array: var parent = get_parent() diff --git a/addons/material_maker/engine/nodes/gen_reroute.gd b/addons/material_maker/engine/nodes/gen_reroute.gd index bc63fa104..fa4c98f01 100644 --- a/addons/material_maker/engine/nodes/gen_reroute.gd +++ b/addons/material_maker/engine/nodes/gen_reroute.gd @@ -20,7 +20,7 @@ func get_output_defs(_show_hidden : bool = false) -> Array: return [ { type=port_type } ] func get_parameter_defs() -> Array: - return [] + return [{ name="preview", type="enum", values=["none", "small", "large", "huge"], default=0 }] func _get_shader_code(uv : String, output_index : int, context : MMGenContext) -> ShaderCode: var source = get_source(0) diff --git a/material_maker/nodes/reroute/reroute.gd b/material_maker/nodes/reroute/reroute.gd index 55b563795..e77bac1cf 100644 --- a/material_maker/nodes/reroute/reroute.gd +++ b/material_maker/nodes/reroute/reroute.gd @@ -1,12 +1,28 @@ extends MMGraphNodeMinimal + +const PREVIEW_SIZES : Array[int] = [ 0, 64, 128, 192] + + func _ready() -> void: super._ready() - var current_theme : Theme = mm_globals.main_window.theme - for stylebox in current_theme.get_stylebox_list("Reroute"): - add_theme_stylebox_override(stylebox, current_theme.get_stylebox(stylebox, "Reroute")) + close_button.visible = false + set_theme_type("Reroute") call_deferred("on_connections_changed") +func set_generator(g : MMGenBase) -> void: + super.set_generator(g) + generator.parameter_changed.connect(self.on_parameter_changed) + 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 on_connections_changed(): var graph_edit = get_parent() var color : Color = Color(1.0, 1.0, 1.0) @@ -26,3 +42,65 @@ func on_connections_changed(): port_type = node.generator.get_input_defs()[c.from_port].type set_slot(0, true, type, color, true, type, color) generator.set_port_type(port_type) + update_preview() + +func update_preview(preview : Control = null): + if preview == null: + if $Contents.get_child_count() == 0: + return + preview = $Contents.get_child(0) + var preview_source : MMGenBase.OutputPort = generator.get_source(0) + if preview_source == null: + preview.set_generator(null) + else: + preview.set_generator(preview_source.generator, preview_source.output_index) + +func _on_gui_input(event): + if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_RIGHT: + accept_event() + var menu : PopupMenu = PopupMenu.new() + menu.add_item("No preview") + menu.add_item("Small preview") + menu.add_item("Large preview") + menu.add_item("Huge preview") + add_child(menu) + menu.id_pressed.connect(self.on_context_menu) + menu.popup(Rect2(get_global_mouse_position(), Vector2(0, 0))) + +func on_context_menu(id : int): + var old_value = generator.get_parameter("preview") + if old_value != id and get_parent().get("undoredo") != null: + var node_hier_name = generator.get_hier_name() + var undo_command = { type="setparams", node=node_hier_name, params={ preview=old_value } } + var redo_command = { type="setparams", node=node_hier_name, params={ preview=id } } + get_parent().undoredo.add("Set parameter value", [ undo_command ], [ redo_command ]) + generator.set_parameter("preview", id) + +func on_parameter_changed(n : String, v): + if n == "preview": + var old_size : Vector2 = size + await set_preview(v) + disable_undoredo_for_offset = true + position_offset -= (size-old_size)/2 + disable_undoredo_for_offset = false + +func set_preview(v : int): + var preview : Control = null + if $Contents.get_child_count() > 0: + preview = $Contents.get_child(0) + if v == 0: + if preview: + preview.queue_free() + set_theme_type("Reroute") + else: + if ! preview: + preview = preload("res://material_maker/panels/preview_2d/preview_2d_node.tscn").instantiate() + $Contents.add_child(preview) + preview.mouse_filter = Control.MOUSE_FILTER_IGNORE + update_preview(preview) + var preview_size : int = PREVIEW_SIZES[v] + preview.custom_minimum_size = Vector2(preview_size, preview_size) + set_theme_type("ReroutePreview") + await get_tree().process_frame + size = Vector2(0, 0) + diff --git a/material_maker/nodes/reroute/reroute.tscn b/material_maker/nodes/reroute/reroute.tscn index d9f92eb31..c6c7b0175 100644 --- a/material_maker/nodes/reroute/reroute.tscn +++ b/material_maker/nodes/reroute/reroute.tscn @@ -39,7 +39,8 @@ GraphNode/styles/frame = SubResource("1") GraphNode/styles/position = null GraphNode/styles/selected_frame = SubResource("2") -[node name="reroute" type="GraphNode"] +[node name="Reroute" type="GraphNode"] +clip_children = 2 custom_minimum_size = Vector2(24, 24) offset_right = 24.0 offset_bottom = 24.0 @@ -55,7 +56,13 @@ slot/0/right_icon = null slot/0/draw_stylebox = true script = ExtResource("1") -[node name="Foo" type="Control" parent="."] +[node name="Contents" type="MarginContainer" parent="."] custom_minimum_size = Vector2(24, 24) layout_mode = 2 mouse_filter = 2 +theme_override_constants/margin_left = 1 +theme_override_constants/margin_top = 1 +theme_override_constants/margin_right = 1 +theme_override_constants/margin_bottom = 1 + +[connection signal="gui_input" from="." to="." method="_on_gui_input"] diff --git a/material_maker/theme/birch.tres b/material_maker/theme/birch.tres index d02560cc0..b256ebd76 100644 --- a/material_maker/theme/birch.tres +++ b/material_maker/theme/birch.tres @@ -1,63 +1,63 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://bnw8qp6oanlqw"] - -[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_upxmm"] -[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_xm8jh"] -[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_6tde0"] -[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_61lra"] -[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_3dj8t"] -[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_03ddd"] -[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_ok48a"] -[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_qgoix"] -[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_8djtv"] -[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_8autr"] -[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_pjypt"] -[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_h5dcb"] -[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_1871x"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_2iohl"] -[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_ycab1"] -[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_bu0ii"] -[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_qkdh6"] -[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_5t0nn"] -[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_sfx3k"] -[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_00fn4"] -[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_sq6fn"] -[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_p7kxk"] -[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_35dxi"] -[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_galo7"] -[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_b11y4"] -[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_5t1vb"] -[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_1mjfj"] -[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_hvlta"] -[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_hs67n"] -[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_awovo"] -[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_qv4dv"] -[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_xp2ro"] -[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_ph5uh"] -[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_xgi4v"] -[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_e2shc"] -[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_ihhd4"] -[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_fjnuu"] -[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_mfbbn"] -[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_kc0in"] -[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_rkn75"] -[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_fjo03"] -[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_yjbqa"] -[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_b2amy"] -[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_2ve4g"] -[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_8eifn"] -[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_06mna"] -[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_buepj"] -[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_0goxu"] -[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_4tbat"] -[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_4gouu"] -[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_kmjjm"] -[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_6hrbw"] -[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_gvq3u"] -[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_3jwyp"] -[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_exc4o"] -[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_tjo7y"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8svsr"] +[gd_resource type="Theme" load_steps=124 format=3 uid="uid://bnw8qp6oanlqw"] + +[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_jd14k"] +[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_47wpj"] +[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_umeqq"] +[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_pmwt5"] +[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_f8ps3"] +[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_654pi"] +[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_tv5fd"] +[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_knsgb"] +[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_tee25"] +[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_iq157"] +[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_rch5o"] +[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_ykkuv"] +[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_s83h2"] +[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_3rx8a"] +[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_wlspq"] +[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_n3lss"] +[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_q135b"] +[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_a4dr6"] +[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_lgahk"] +[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_hgsb4"] +[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_yx6hv"] +[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_xdhyl"] +[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_nmbyn"] +[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_i7ujq"] +[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_5vbco"] +[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_m6jg1"] +[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_8rdnf"] +[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_kd43n"] +[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_a4htm"] +[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_fijus"] +[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_mnfgv"] +[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_vdkrp"] +[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_5d35i"] +[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_lro4j"] +[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_y8f5p"] +[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_h7yc3"] +[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_jfhuu"] +[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_rbmwk"] +[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_1vpbl"] +[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_2p085"] +[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_tbwsp"] +[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_3qpie"] +[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_5dlon"] +[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_h10aa"] +[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_3yd20"] +[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_uhyd5"] +[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_7h50j"] +[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_lp07v"] +[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_wsi3p"] +[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_s2o3o"] +[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_tid5d"] +[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_jbsc5"] +[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_ha7se"] +[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_42x84"] +[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_yyym2"] +[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_qytyo"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_alqus"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -69,7 +69,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aofee"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7hm5w"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -81,7 +81,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a8qjv"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2j4rk"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -89,10 +89,10 @@ content_margin_bottom = 4.0 bg_color = Color(0.294118, 0.251765, 0.188235, 1) draw_center = false -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_c86jc"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_01rsv"] bg_color = Color(0.292969, 0.251386, 0.189012, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p2u7d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_udc38"] bg_color = Color(1, 0.746, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -103,7 +103,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nrh0f"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_eh86q"] bg_color = Color(1, 0.746, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -114,7 +114,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7fcbx"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aagtd"] bg_color = Color(1, 0.746, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -125,7 +125,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i40j2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6egll"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -136,7 +136,7 @@ border_width_right = 2 border_width_bottom = 2 border_color = Color(1, 1, 1, 0.9) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_syb7i"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rq5dp"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -151,14 +151,14 @@ expand_margin_top = 24.0 shadow_color = Color(1, 0.768, 0.42, 0.2) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kk8gm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cx0cu"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 content_margin_bottom = 4.0 bg_color = Color(0.19375, 0.16625, 0.125, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fk6le"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7ahst"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -171,7 +171,7 @@ border_width_bottom = 1 border_color = Color(0.155, 0.133, 0.1, 1) expand_margin_top = -33.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lqam4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_drpg1"] content_margin_left = 2.0 content_margin_top = 4.0 content_margin_right = 2.0 @@ -183,7 +183,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dadfj"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8rmjo"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -194,7 +194,7 @@ border_width_top = 1 border_width_right = 1 border_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qa4xr"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jg5te"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -206,7 +206,7 @@ border_width_right = 1 border_color = Color(0.19375, 0.16625, 0.125, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4l4qx"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4s2sp"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -218,7 +218,7 @@ border_width_right = 1 border_color = Color(0.155, 0.133, 0.1, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k4idb"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0pcl7"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -231,7 +231,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.56875, 0.54125, 0.5, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d6yi7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ledqg"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -239,7 +239,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.31, 0.266, 0.2, 0.5) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mcudf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xj7pv"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -249,25 +249,25 @@ draw_center = false border_width_bottom = 1 border_color = Color(0.91, 0.71, 0.41, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_1kp6k"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_ntbfm"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_nftw2"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_ah6k1"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_rxy84"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_4pel4"] content_margin_left = 4.0 content_margin_top = 0.0 content_margin_right = 4.0 content_margin_bottom = 4.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_67rdf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u8oyh"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -280,7 +280,7 @@ border_width_bottom = 1 border_color = Color(0.155, 0.133, 0.1, 1) [sub_resource type="FontFile" id="120"] -fallbacks = Array[Font]([ExtResource("14_2iohl")]) +fallbacks = Array[Font]([ExtResource("14_3rx8a")]) cache/0/16/0/ascent = 0.0 cache/0/16/0/descent = 0.0 cache/0/16/0/underline_position = 0.0 @@ -288,35 +288,20 @@ 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_8yhod"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.76, 0.4, 1) -shadow_color = Color(1, 0.76, 0.4, 0.1) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_km5bb"] -bg_color = Color(0, 0, 0, 0) +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jyuef"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(1, 0.746, 0.365, 1) draw_center = false -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 = 10 -corner_radius_top_right = 10 -corner_radius_bottom_right = 10 -corner_radius_bottom_left = 10 +border_width_left = 2 +border_width_top = 2 +border_width_right = 2 +border_width_bottom = 2 +corner_detail = 1 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_h5nty"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nng13"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 @@ -326,76 +311,59 @@ border_color = Color(0.376471, 0.376471, 0.376471, 0.701961) corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8rag2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_thikc"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.9) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.376471, 0.376471, 0.376471, 0.901961) +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_blend = true corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(0, 0, 0, 0.3) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vp718"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.768, 0.42, 1) -shadow_color = Color(1, 0.768, 0.42, 0.2) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_avqli"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hi4vr"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(1, 0.746, 0.365, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7tku1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_70h3g"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(1, 0.746, 0.365, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_mswwl"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_w7mw4"] color = Color(1, 1, 1, 0.1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nq667"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bcgxn"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.4825, 0.4495, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5ka01"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_68l6u"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_johyl"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mmhrp"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -407,7 +375,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_g20py"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a34m8"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -420,7 +388,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(1, 1, 1, 0.2) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cv31m"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_la1mq"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -428,7 +396,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0j1tu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2f24o"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -436,7 +404,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yropi"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hxim3"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -448,7 +416,7 @@ border_width_right = 2 border_width_bottom = 2 corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yin7o"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a28yg"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -461,7 +429,7 @@ border_width_bottom = 2 border_color = Color(0.19375, 0.16625, 0.125, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xm40k"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ynapp"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -474,7 +442,7 @@ border_width_bottom = 2 border_color = Color(0.217, 0.1862, 0.14, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8yffg"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1ts0p"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -486,7 +454,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4825, 0.4495, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_msr06"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4bo4m"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -498,14 +466,14 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.91, 0.71, 0.41, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p7h8u"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jpi8e"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 content_margin_bottom = 4.0 bg_color = Color(0.2325, 0.1995, 0.15, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ld0so"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jurwu"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -519,7 +487,7 @@ border_color = Color(0.4825, 0.4495, 0.4, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1wtve"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ah0p3"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -527,27 +495,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.2325, 0.1995, 0.15, 1) border_color = Color(0.19375, 0.16625, 0.125, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_gftvj"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_bq8xc"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_feixt"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_hcvjg"] color = Color(1, 1, 1, 0.1) grow_end = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_3l65c"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_byyou"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 grow_end = 7.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6nbgc"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t7s0u"] 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_g4a3d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6vt8n"] bg_color = Color(0.376471, 0.376471, 0.376471, 1) border_width_left = 1 border_width_top = 1 @@ -559,9 +527,43 @@ corner_radius_top_right = 24 corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_8tdko"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_qaotj"] + +[sub_resource type="FontFile" id="FontFile_00yus"] +fallbacks = Array[Font]([ExtResource("14_3rx8a")]) +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_repjd"] +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_ywcvg"] +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_ndfpy"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_u48sw"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_q4lav"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pkwfo"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -573,7 +575,7 @@ border_width_right = 1 border_color = Color(0.217, 0.1862, 0.14, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nnn1u"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l265p"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -585,7 +587,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5iybx"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fs2po"] content_margin_left = 1.0 content_margin_top = 1.0 content_margin_right = 1.0 @@ -599,7 +601,7 @@ border_color = Color(1, 1, 1, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jnlnn"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cpa6d"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -607,7 +609,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.4825, 0.4495, 0.4, 1) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4fbow"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6okbm"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -620,11 +622,11 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4825, 0.4495, 0.4, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_tdcds"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_8udsg"] -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_bfb57"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_ucoek"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7um5p"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_da2le"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -632,7 +634,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.08) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i2jpu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hj63j"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -640,27 +642,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.155, 0.133, 0.1, 1) border_color = Color(0.31, 0.266, 0.2, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_3e42m"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_p2mui"] color = Color(1, 1, 1, 0.1) grow_begin = 0.0 grow_end = 0.0 vertical = true -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k4fvf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wftvh"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.4825, 0.4495, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5kh1e"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1odus"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.155, 0.133, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_blmsk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6qf7o"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -683,12 +685,12 @@ Button/colors/font_color_pressed = Color(0.91, 0.71, 0.41, 1) Button/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) Button/colors/icon_color_pressed = Color(1.0465, 0.8165, 0.4715, 1) Button/constants/hseparation = 2 -Button/fonts/font = ExtResource("1_upxmm") -Button/styles/disabled = SubResource("StyleBoxFlat_8svsr") -Button/styles/focus = SubResource("StyleBoxFlat_aofee") -Button/styles/hover = SubResource("StyleBoxFlat_aofee") -Button/styles/normal = SubResource("StyleBoxFlat_aofee") -Button/styles/pressed = SubResource("StyleBoxFlat_aofee") +Button/fonts/font = ExtResource("1_jd14k") +Button/styles/disabled = SubResource("StyleBoxFlat_alqus") +Button/styles/focus = SubResource("StyleBoxFlat_7hm5w") +Button/styles/hover = SubResource("StyleBoxFlat_7hm5w") +Button/styles/normal = SubResource("StyleBoxFlat_7hm5w") +Button/styles/pressed = SubResource("StyleBoxFlat_7hm5w") CheckBox/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) CheckBox/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckBox/colors/font_color_hover = Color(0.8965, 0.8899, 0.88, 1) @@ -697,16 +699,16 @@ CheckBox/colors/font_color_pressed = Color(0.91, 0.71, 0.41, 1) CheckBox/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckBox/constants/check_vadjust = 0 CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = ExtResource("1_upxmm") -CheckBox/icons/checked = ExtResource("2_xm8jh") -CheckBox/icons/radio_checked = ExtResource("3_6tde0") -CheckBox/icons/radio_unchecked = ExtResource("4_61lra") -CheckBox/icons/unchecked = ExtResource("5_3dj8t") -CheckBox/styles/disabled = SubResource("StyleBoxFlat_a8qjv") -CheckBox/styles/hover = SubResource("StyleBoxFlat_a8qjv") -CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_c86jc") -CheckBox/styles/normal = SubResource("StyleBoxFlat_a8qjv") -CheckBox/styles/pressed = SubResource("StyleBoxFlat_a8qjv") +CheckBox/fonts/font = ExtResource("1_jd14k") +CheckBox/icons/checked = ExtResource("2_47wpj") +CheckBox/icons/radio_checked = ExtResource("3_umeqq") +CheckBox/icons/radio_unchecked = ExtResource("4_pmwt5") +CheckBox/icons/unchecked = ExtResource("5_f8ps3") +CheckBox/styles/disabled = SubResource("StyleBoxFlat_2j4rk") +CheckBox/styles/hover = SubResource("StyleBoxFlat_2j4rk") +CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_01rsv") +CheckBox/styles/normal = SubResource("StyleBoxFlat_2j4rk") +CheckBox/styles/pressed = SubResource("StyleBoxFlat_2j4rk") CheckButton/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) CheckButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckButton/colors/font_color_hover = Color(0.8965, 0.8899, 0.88, 1) @@ -714,19 +716,19 @@ CheckButton/colors/font_color_pressed = Color(0.91, 0.71, 0.41, 1) CheckButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckButton/constants/check_vadjust = 0 CheckButton/constants/hseparation = 4 -CheckButton/icons/off = ExtResource("6_03ddd") -CheckButton/icons/off_disabled = ExtResource("7_ok48a") -CheckButton/icons/on = ExtResource("8_qgoix") -CheckButton/icons/on_disabled = ExtResource("9_8djtv") -CheckButton/styles/disabled = SubResource("StyleBoxFlat_aofee") -CheckButton/styles/hover = SubResource("StyleBoxFlat_aofee") -CheckButton/styles/normal = SubResource("StyleBoxFlat_aofee") -CheckButton/styles/pressed = SubResource("StyleBoxFlat_aofee") +CheckButton/icons/off = ExtResource("6_654pi") +CheckButton/icons/off_disabled = ExtResource("7_tv5fd") +CheckButton/icons/on = ExtResource("8_knsgb") +CheckButton/icons/on_disabled = ExtResource("9_tee25") +CheckButton/styles/disabled = SubResource("StyleBoxFlat_7hm5w") +CheckButton/styles/hover = SubResource("StyleBoxFlat_7hm5w") +CheckButton/styles/normal = SubResource("StyleBoxFlat_7hm5w") +CheckButton/styles/pressed = SubResource("StyleBoxFlat_7hm5w") ColorPickerButton/constants/hseparation = 0 -ColorPickerButton/fonts/font = ExtResource("1_upxmm") -ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_p2u7d") -ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_nrh0f") -ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_7fcbx") +ColorPickerButton/fonts/font = ExtResource("1_jd14k") +ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_udc38") +ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_eh86q") +ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_aagtd") Editor/colors/accent_color = Color(0.91, 0.71, 0.41, 1) Editor/colors/axis_x_color = Color(0.96, 0.656, 0.2, 1) Editor/colors/axis_y_color = Color(0.84, 0.508, 0.01, 1) @@ -755,24 +757,24 @@ Editor/constants/dark_theme = 1 Editor/constants/inspector_margin = 8 Editor/constants/scale = 1 Editor/constants/thumb_size = 64 -Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_i40j2") -EditorAbout/styles/panel = SubResource("StyleBoxFlat_syb7i") -EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_syb7i") -EditorStyles/styles/Background = SubResource("StyleBoxFlat_kk8gm") -EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_fk6le") -EditorStyles/styles/Content = SubResource("StyleBoxFlat_lqam4") -EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_dadfj") -EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_qa4xr") -EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_4l4qx") -EditorStyles/styles/Focus = SubResource("StyleBoxFlat_k4idb") -EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_d6yi7") -EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_mcudf") -EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_aofee") -EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_1kp6k") -EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_qa4xr") -EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_4l4qx") -EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_nftw2") -EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_rxy84") +Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_6egll") +EditorAbout/styles/panel = SubResource("StyleBoxFlat_rq5dp") +EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_rq5dp") +EditorStyles/styles/Background = SubResource("StyleBoxFlat_cx0cu") +EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_7ahst") +EditorStyles/styles/Content = SubResource("StyleBoxFlat_drpg1") +EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_8rmjo") +EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_jg5te") +EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_4s2sp") +EditorStyles/styles/Focus = SubResource("StyleBoxFlat_0pcl7") +EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_ledqg") +EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_xj7pv") +EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_7hm5w") +EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_ntbfm") +EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_jg5te") +EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_4s2sp") +EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_ah6k1") +EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_4pel4") GraphEdit/colors/activity = Color(0.91, 0.71, 0.41, 1) GraphEdit/colors/grid_major = Color(1, 1, 1, 0.15) GraphEdit/colors/grid_minor = Color(1, 1, 1, 0.07) @@ -780,11 +782,11 @@ GraphEdit/colors/selection_fill = Color(0.91, 0.71, 0.41, 0.3) GraphEdit/colors/selection_stroke = Color(0.91, 0.71, 0.41, 0.8) GraphEdit/constants/bezier_len_neg = 160 GraphEdit/constants/bezier_len_pos = 80 -GraphEdit/icons/minus = ExtResource("10_8autr") -GraphEdit/icons/more = ExtResource("11_pjypt") -GraphEdit/icons/reset = ExtResource("12_h5dcb") -GraphEdit/icons/snap = ExtResource("13_1871x") -GraphEdit/styles/bg = SubResource("StyleBoxFlat_67rdf") +GraphEdit/icons/minus = ExtResource("10_iq157") +GraphEdit/icons/more = ExtResource("11_rch5o") +GraphEdit/icons/reset = ExtResource("12_ykkuv") +GraphEdit/icons/snap = ExtResource("13_s83h2") +GraphEdit/styles/bg = SubResource("StyleBoxFlat_u8oyh") GraphNode/colors/close_color = Color(1, 1, 1, 0.7) GraphNode/colors/resizer_color = Color(1, 1, 1, 0.7) GraphNode/colors/title_color = Color(1, 1, 1, 1) @@ -796,23 +798,23 @@ GraphNode/constants/separation = 1 GraphNode/constants/title_h_offset = -16 GraphNode/constants/title_offset = 20 GraphNode/fonts/title_font = SubResource("120") -GraphNode/icons/close = ExtResource("15_ycab1") -GraphNode/icons/port = ExtResource("16_bu0ii") -GraphNode/icons/resizer = ExtResource("17_qkdh6") -GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_8yhod") -GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_km5bb") -GraphNode/styles/panel = SubResource("StyleBoxFlat_h5nty") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_8rag2") -GraphNode/styles/position = SubResource("StyleBoxFlat_vp718") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_avqli") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_7tku1") -HSeparator/styles/separator = SubResource("StyleBoxLine_mswwl") -HSlider/icons/grabber = ExtResource("18_5t0nn") -HSlider/icons/grabber_highlight = ExtResource("19_sfx3k") -HSlider/styles/grabber_area = SubResource("StyleBoxFlat_nq667") -HSlider/styles/slider = SubResource("StyleBoxFlat_5ka01") +GraphNode/icons/close = ExtResource("15_wlspq") +GraphNode/icons/port = ExtResource("16_n3lss") +GraphNode/icons/resizer = ExtResource("17_q135b") +GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_jyuef") +GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_jyuef") +GraphNode/styles/panel = SubResource("StyleBoxFlat_nng13") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_thikc") +GraphNode/styles/position = SubResource("StyleBoxFlat_jyuef") +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_hi4vr") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_70h3g") +HSeparator/styles/separator = SubResource("StyleBoxLine_w7mw4") +HSlider/icons/grabber = ExtResource("18_a4dr6") +HSlider/icons/grabber_highlight = ExtResource("19_lgahk") +HSlider/styles/grabber_area = SubResource("StyleBoxFlat_bcgxn") +HSlider/styles/slider = SubResource("StyleBoxFlat_68l6u") HSplitContainer/constants/separation = 8 -HSplitContainer/icons/grabber = ExtResource("20_00fn4") +HSplitContainer/icons/grabber = ExtResource("20_hgsb4") ItemList/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) ItemList/colors/font_color_selected = Color(1, 1, 1, 1) ItemList/colors/guide_color = Color(1, 1, 1, 0.05) @@ -820,19 +822,19 @@ ItemList/constants/hseparation = 0 ItemList/constants/icon_margin = 4 ItemList/constants/line_separation = 0 ItemList/constants/vseparation = 0 -ItemList/styles/bg = SubResource("StyleBoxFlat_johyl") -ItemList/styles/bg_focus = SubResource("StyleBoxFlat_k4idb") -ItemList/styles/cursor = SubResource("StyleBoxFlat_g20py") -ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_g20py") -ItemList/styles/selected = SubResource("StyleBoxFlat_cv31m") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_0j1tu") +ItemList/styles/bg = SubResource("StyleBoxFlat_mmhrp") +ItemList/styles/bg_focus = SubResource("StyleBoxFlat_0pcl7") +ItemList/styles/cursor = SubResource("StyleBoxFlat_a34m8") +ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_a34m8") +ItemList/styles/selected = SubResource("StyleBoxFlat_la1mq") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_2f24o") Label/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) Label/colors/font_color_shadow = Color(0, 0, 0, 0) Label/constants/line_spacing = 0 Label/constants/shadow_as_outline = 0 Label/constants/shadow_offset_x = 1 Label/constants/shadow_offset_y = 1 -Label/styles/normal = SubResource("StyleBoxEmpty_1kp6k") +Label/styles/normal = SubResource("StyleBoxEmpty_ntbfm") LineEdit/colors/clear_button_color = Color(0.8275, 0.8165, 0.8, 1) LineEdit/colors/clear_button_color_pressed = Color(0.91, 0.71, 0.41, 1) LineEdit/colors/cursor_color = Color(0.8275, 0.8165, 0.8, 1) @@ -841,24 +843,24 @@ LineEdit/colors/font_color_selected = Color(1, 1, 1, 1) LineEdit/colors/read_only = Color(1, 1, 1, 0.3) LineEdit/colors/selection_color = Color(0.91, 0.71, 0.41, 0.4) LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = ExtResource("1_upxmm") -LineEdit/icons/clear = ExtResource("21_sq6fn") -LineEdit/styles/focus = SubResource("StyleBoxFlat_yropi") -LineEdit/styles/normal = SubResource("StyleBoxFlat_yin7o") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_xm40k") +LineEdit/fonts/font = ExtResource("1_jd14k") +LineEdit/icons/clear = ExtResource("21_yx6hv") +LineEdit/styles/focus = SubResource("StyleBoxFlat_hxim3") +LineEdit/styles/normal = SubResource("StyleBoxFlat_a28yg") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_ynapp") LinkButton/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) -LinkButton/styles/focus = SubResource("StyleBoxEmpty_1kp6k") +LinkButton/styles/focus = SubResource("StyleBoxEmpty_ntbfm") MenuButton/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) MenuButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) MenuButton/colors/font_color_hover = Color(0.8965, 0.8899, 0.88, 1) MenuButton/colors/font_color_pressed = Color(1, 1, 1, 1) MenuButton/constants/hseparation = 0 -MenuButton/fonts/font = ExtResource("1_upxmm") -MenuButton/styles/disabled = SubResource("StyleBoxFlat_aofee") -MenuButton/styles/focus = SubResource("StyleBoxFlat_aofee") -MenuButton/styles/hover = SubResource("StyleBoxFlat_aofee") -MenuButton/styles/normal = SubResource("StyleBoxFlat_aofee") -MenuButton/styles/pressed = SubResource("StyleBoxFlat_aofee") +MenuButton/fonts/font = ExtResource("1_jd14k") +MenuButton/styles/disabled = SubResource("StyleBoxFlat_7hm5w") +MenuButton/styles/focus = SubResource("StyleBoxFlat_7hm5w") +MenuButton/styles/hover = SubResource("StyleBoxFlat_7hm5w") +MenuButton/styles/normal = SubResource("StyleBoxFlat_7hm5w") +MenuButton/styles/pressed = SubResource("StyleBoxFlat_7hm5w") OptionButton/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) OptionButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) OptionButton/colors/font_color_hover = Color(0.8965, 0.8899, 0.88, 1) @@ -867,65 +869,99 @@ OptionButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) OptionButton/constants/arrow_margin = 4 OptionButton/constants/hseparation = 4 OptionButton/constants/modulate_arrow = 1 -OptionButton/fonts/font = ExtResource("1_upxmm") -OptionButton/icons/arrow = ExtResource("22_p7kxk") -OptionButton/styles/disabled = SubResource("StyleBoxFlat_xm40k") -OptionButton/styles/focus = SubResource("StyleBoxFlat_yropi") -OptionButton/styles/hover = SubResource("StyleBoxFlat_8yffg") -OptionButton/styles/normal = SubResource("StyleBoxFlat_yin7o") -OptionButton/styles/pressed = SubResource("StyleBoxFlat_msr06") -Panel/styles/panel = SubResource("StyleBoxFlat_p7h8u") -PanelContainer/styles/panel = SubResource("StyleBoxFlat_aofee") -Popup/styles/panel = SubResource("StyleBoxFlat_ld0so") +OptionButton/fonts/font = ExtResource("1_jd14k") +OptionButton/icons/arrow = ExtResource("22_xdhyl") +OptionButton/styles/disabled = SubResource("StyleBoxFlat_ynapp") +OptionButton/styles/focus = SubResource("StyleBoxFlat_hxim3") +OptionButton/styles/hover = SubResource("StyleBoxFlat_1ts0p") +OptionButton/styles/normal = SubResource("StyleBoxFlat_a28yg") +OptionButton/styles/pressed = SubResource("StyleBoxFlat_4bo4m") +Panel/styles/panel = SubResource("StyleBoxFlat_jpi8e") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_7hm5w") +Popup/styles/panel = SubResource("StyleBoxFlat_jurwu") PopupMenu/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) PopupMenu/colors/font_color_accel = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_disabled = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_hover = Color(0.8965, 0.8899, 0.88, 1) PopupMenu/constants/hseparation = 4 PopupMenu/constants/vseparation = 5 -PopupMenu/fonts/font = ExtResource("1_upxmm") -PopupMenu/icons/checked = ExtResource("23_35dxi") -PopupMenu/icons/radio_checked = ExtResource("24_galo7") -PopupMenu/icons/radio_unchecked = ExtResource("25_b11y4") -PopupMenu/icons/submenu = ExtResource("26_5t1vb") -PopupMenu/icons/unchecked = ExtResource("27_1mjfj") -PopupMenu/icons/visibility_hidden = ExtResource("28_hvlta") -PopupMenu/icons/visibility_visible = ExtResource("29_hs67n") -PopupMenu/icons/visibility_xray = ExtResource("30_awovo") -PopupMenu/styles/disabled = SubResource("StyleBoxFlat_aofee") -PopupMenu/styles/focus = SubResource("StyleBoxFlat_aofee") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_1wtve") -PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_gftvj") -PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_feixt") -PopupMenu/styles/normal = SubResource("StyleBoxFlat_aofee") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_ld0so") -PopupMenu/styles/pressed = SubResource("StyleBoxFlat_aofee") -PopupMenu/styles/separator = SubResource("StyleBoxLine_3l65c") -PopupPanel/styles/panel = SubResource("StyleBoxFlat_ld0so") +PopupMenu/fonts/font = ExtResource("1_jd14k") +PopupMenu/icons/checked = ExtResource("23_nmbyn") +PopupMenu/icons/radio_checked = ExtResource("24_i7ujq") +PopupMenu/icons/radio_unchecked = ExtResource("25_5vbco") +PopupMenu/icons/submenu = ExtResource("26_m6jg1") +PopupMenu/icons/unchecked = ExtResource("27_8rdnf") +PopupMenu/icons/visibility_hidden = ExtResource("28_kd43n") +PopupMenu/icons/visibility_visible = ExtResource("29_a4htm") +PopupMenu/icons/visibility_xray = ExtResource("30_fijus") +PopupMenu/styles/disabled = SubResource("StyleBoxFlat_7hm5w") +PopupMenu/styles/focus = SubResource("StyleBoxFlat_7hm5w") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_ah0p3") +PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_bq8xc") +PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_hcvjg") +PopupMenu/styles/normal = SubResource("StyleBoxFlat_7hm5w") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_jurwu") +PopupMenu/styles/pressed = SubResource("StyleBoxFlat_7hm5w") +PopupMenu/styles/separator = SubResource("StyleBoxLine_byyou") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_jurwu") ProgressBar/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) -ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_syb7i") -Reroute/styles/frame = SubResource("StyleBoxFlat_6nbgc") -Reroute/styles/selected_frame = SubResource("StyleBoxFlat_g4a3d") +ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_rq5dp") +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/fonts/title_font = SubResource("120") +Reroute/icons/close = ExtResource("15_wlspq") +Reroute/icons/port = ExtResource("16_n3lss") +Reroute/icons/resizer = ExtResource("17_q135b") +Reroute/styles/panel = SubResource("StyleBoxFlat_t7s0u") +Reroute/styles/panel_selected = SubResource("StyleBoxFlat_6vt8n") +Reroute/styles/titlebar = SubResource("StyleBoxEmpty_qaotj") +Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_qaotj") +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("15_wlspq") +ReroutePreview/icons/port = ExtResource("16_n3lss") +ReroutePreview/icons/resizer = ExtResource("17_q135b") +ReroutePreview/styles/panel = SubResource("StyleBoxFlat_repjd") +ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_ywcvg") +ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_ndfpy") +ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_ndfpy") RichTextLabel/colors/default_color = Color(0.8275, 0.8165, 0.8, 1) RichTextLabel/colors/font_color_shadow = Color(0, 0, 0, 0) RichTextLabel/constants/shadow_as_outline = 0 RichTextLabel/constants/shadow_offset_x = 1 RichTextLabel/constants/shadow_offset_y = 1 -RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_8tdko") -RichTextLabel/styles/normal = SubResource("StyleBoxFlat_67rdf") +RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_u48sw") +RichTextLabel/styles/normal = SubResource("StyleBoxFlat_u8oyh") TabBar/colors/font_color_bg = Color(1, 1, 1, 0.3) TabBar/colors/font_color_fg = Color(0.8275, 0.8165, 0.8, 1) TabBar/constants/hseparation = 4 -TabBar/icons/close = ExtResource("31_qv4dv") -TabBar/icons/decrement = ExtResource("32_xp2ro") -TabBar/icons/decrement_highlight = ExtResource("33_ph5uh") -TabBar/icons/increment = ExtResource("34_xgi4v") -TabBar/icons/increment_highlight = ExtResource("35_e2shc") -TabBar/styles/button = SubResource("StyleBoxFlat_aofee") -TabBar/styles/button_pressed = SubResource("StyleBoxFlat_aofee") -TabBar/styles/tab_bg = SubResource("StyleBoxFlat_qa4xr") -TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_q4lav") -TabBar/styles/tab_fg = SubResource("StyleBoxFlat_4l4qx") +TabBar/icons/close = ExtResource("31_mnfgv") +TabBar/icons/decrement = ExtResource("32_vdkrp") +TabBar/icons/decrement_highlight = ExtResource("33_5d35i") +TabBar/icons/increment = ExtResource("34_lro4j") +TabBar/icons/increment_highlight = ExtResource("35_y8f5p") +TabBar/styles/button = SubResource("StyleBoxFlat_7hm5w") +TabBar/styles/button_pressed = SubResource("StyleBoxFlat_7hm5w") +TabBar/styles/tab_bg = SubResource("StyleBoxFlat_jg5te") +TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_pkwfo") +TabBar/styles/tab_fg = SubResource("StyleBoxFlat_4s2sp") TabContainer/colors/font_color_bg = Color(1, 1, 1, 0.3) TabContainer/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) TabContainer/colors/font_color_fg = Color(0.8275, 0.8165, 0.8, 1) @@ -934,17 +970,17 @@ TabContainer/constants/label_valign_bg = 0 TabContainer/constants/label_valign_fg = 0 TabContainer/constants/side_margin = 0 TabContainer/constants/top_margin = 24 -TabContainer/fonts/font = ExtResource("1_upxmm") -TabContainer/icons/decrement = ExtResource("36_ihhd4") -TabContainer/icons/decrement_highlight = ExtResource("37_fjnuu") -TabContainer/icons/increment = ExtResource("38_mfbbn") -TabContainer/icons/increment_highlight = ExtResource("39_kc0in") -TabContainer/icons/menu = ExtResource("40_rkn75") -TabContainer/icons/menu_highlight = ExtResource("41_fjo03") -TabContainer/styles/panel = SubResource("StyleBoxFlat_nnn1u") -TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_qa4xr") -TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_q4lav") -TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_4l4qx") +TabContainer/fonts/font = ExtResource("1_jd14k") +TabContainer/icons/decrement = ExtResource("36_h7yc3") +TabContainer/icons/decrement_highlight = ExtResource("37_jfhuu") +TabContainer/icons/increment = ExtResource("38_rbmwk") +TabContainer/icons/increment_highlight = ExtResource("39_1vpbl") +TabContainer/icons/menu = ExtResource("40_2p085") +TabContainer/icons/menu_highlight = ExtResource("41_tbwsp") +TabContainer/styles/panel = SubResource("StyleBoxFlat_l265p") +TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_jg5te") +TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_pkwfo") +TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_4s2sp") TextEdit/colors/caret_color = Color(0.8275, 0.8165, 0.8, 1) TextEdit/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) TextEdit/colors/selection_color = Color(0.91, 0.71, 0.41, 0.4) @@ -952,16 +988,16 @@ TextEdit/constants/completion_lines = 0 TextEdit/constants/completion_max_width = 0 TextEdit/constants/completion_scroll_width = 0 TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = ExtResource("1_upxmm") -TextEdit/icons/fold = ExtResource("42_yjbqa") -TextEdit/icons/folded = ExtResource("43_b2amy") -TextEdit/icons/space = ExtResource("44_2ve4g") -TextEdit/icons/tab = ExtResource("45_8eifn") -TextEdit/styles/focus = SubResource("StyleBoxFlat_8yffg") -TextEdit/styles/normal = SubResource("StyleBoxFlat_yin7o") -TextEdit/styles/read_only = SubResource("StyleBoxFlat_xm40k") +TextEdit/fonts/font = ExtResource("1_jd14k") +TextEdit/icons/fold = ExtResource("42_3qpie") +TextEdit/icons/folded = ExtResource("43_5dlon") +TextEdit/icons/space = ExtResource("44_h10aa") +TextEdit/icons/tab = ExtResource("45_3yd20") +TextEdit/styles/focus = SubResource("StyleBoxFlat_1ts0p") +TextEdit/styles/normal = SubResource("StyleBoxFlat_a28yg") +TextEdit/styles/read_only = SubResource("StyleBoxFlat_ynapp") TooltipLabel/colors/font_color = Color(0, 0, 0, 1) -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_5iybx") +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_fs2po") Tree/colors/custom_button_font_highlight = Color(0.8965, 0.8899, 0.88, 1) Tree/colors/drop_position_color = Color(0.91, 0.71, 0.41, 1) Tree/colors/font_color = Color(0.8275, 0.8165, 0.8, 1) @@ -978,41 +1014,41 @@ Tree/constants/item_margin = 12 Tree/constants/scroll_border = 40 Tree/constants/scroll_speed = 12 Tree/constants/vseparation = 4 -Tree/fonts/font = ExtResource("1_upxmm") -Tree/fonts/title_button_font = ExtResource("1_upxmm") -Tree/icons/arrow = ExtResource("46_06mna") -Tree/icons/arrow_collapsed = ExtResource("47_buepj") -Tree/icons/checked = ExtResource("48_0goxu") -Tree/icons/select_arrow = ExtResource("49_4tbat") -Tree/icons/unchecked = ExtResource("50_4gouu") -Tree/icons/updown = ExtResource("51_kmjjm") -Tree/styles/bg = SubResource("StyleBoxFlat_67rdf") -Tree/styles/bg_focus = SubResource("StyleBoxFlat_k4idb") -Tree/styles/button_pressed = SubResource("StyleBoxFlat_jnlnn") -Tree/styles/cursor = SubResource("StyleBoxFlat_4fbow") -Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_4fbow") -Tree/styles/custom_button = SubResource("StyleBoxEmpty_tdcds") -Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_yin7o") -Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_bfb57") -Tree/styles/hover = SubResource("StyleBoxFlat_7um5p") -Tree/styles/selected = SubResource("StyleBoxFlat_cv31m") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_0j1tu") -Tree/styles/title_button_hover = SubResource("StyleBoxFlat_i2jpu") -Tree/styles/title_button_normal = SubResource("StyleBoxFlat_i2jpu") -Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_i2jpu") -VSeparator/styles/separator = SubResource("StyleBoxLine_3e42m") -VSlider/icons/grabber = ExtResource("52_6hrbw") -VSlider/icons/grabber_highlight = ExtResource("53_gvq3u") -VSlider/styles/grabber_area = SubResource("StyleBoxFlat_k4fvf") -VSlider/styles/slider = SubResource("StyleBoxFlat_5kh1e") +Tree/fonts/font = ExtResource("1_jd14k") +Tree/fonts/title_button_font = ExtResource("1_jd14k") +Tree/icons/arrow = ExtResource("46_uhyd5") +Tree/icons/arrow_collapsed = ExtResource("47_7h50j") +Tree/icons/checked = ExtResource("48_lp07v") +Tree/icons/select_arrow = ExtResource("49_wsi3p") +Tree/icons/unchecked = ExtResource("50_s2o3o") +Tree/icons/updown = ExtResource("51_tid5d") +Tree/styles/bg = SubResource("StyleBoxFlat_u8oyh") +Tree/styles/bg_focus = SubResource("StyleBoxFlat_0pcl7") +Tree/styles/button_pressed = SubResource("StyleBoxFlat_cpa6d") +Tree/styles/cursor = SubResource("StyleBoxFlat_6okbm") +Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_6okbm") +Tree/styles/custom_button = SubResource("StyleBoxEmpty_8udsg") +Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_a28yg") +Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_ucoek") +Tree/styles/hover = SubResource("StyleBoxFlat_da2le") +Tree/styles/selected = SubResource("StyleBoxFlat_la1mq") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_2f24o") +Tree/styles/title_button_hover = SubResource("StyleBoxFlat_hj63j") +Tree/styles/title_button_normal = SubResource("StyleBoxFlat_hj63j") +Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_hj63j") +VSeparator/styles/separator = SubResource("StyleBoxLine_p2mui") +VSlider/icons/grabber = ExtResource("52_jbsc5") +VSlider/icons/grabber_highlight = ExtResource("53_ha7se") +VSlider/styles/grabber_area = SubResource("StyleBoxFlat_wftvh") +VSlider/styles/slider = SubResource("StyleBoxFlat_1odus") VSplitContainer/constants/separation = 8 -VSplitContainer/icons/grabber = ExtResource("54_3jwyp") +VSplitContainer/icons/grabber = ExtResource("54_42x84") Window/colors/title_color = Color(0.8275, 0.8165, 0.8, 1) Window/constants/close_h_ofs = 22 Window/constants/close_v_ofs = 20 Window/constants/scaleborder_size = 4 Window/constants/title_height = 24 -Window/fonts/title_font = ExtResource("1_upxmm") -Window/icons/close = ExtResource("55_exc4o") -Window/icons/close_highlight = ExtResource("56_tjo7y") -Window/styles/panel = SubResource("StyleBoxFlat_blmsk") +Window/fonts/title_font = ExtResource("1_jd14k") +Window/icons/close = ExtResource("55_yyym2") +Window/icons/close_highlight = ExtResource("56_qytyo") +Window/styles/panel = SubResource("StyleBoxFlat_6qf7o") diff --git a/material_maker/theme/dark.tres b/material_maker/theme/dark.tres index d04e382dc..365b84241 100644 --- a/material_maker/theme/dark.tres +++ b/material_maker/theme/dark.tres @@ -1,4 +1,4 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://dwfffr58feofm"] +[gd_resource type="Theme" load_steps=126 format=3 uid="uid://dwfffr58feofm"] [ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="1"] [ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="2"] @@ -287,7 +287,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.0745098, 0.0745098, 0.0745098, 1) -[sub_resource type="FontFile" id="120"] +[sub_resource type="FontFile" id="FontFile_l006w"] fallbacks = Array[Font]([ExtResource("59")]) cache/0/16/0/ascent = 0.0 cache/0/16/0/descent = 0.0 @@ -312,9 +312,9 @@ content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.901961) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_color = Color(1, 1, 1, 0.85098) border_blend = true corner_radius_bottom_right = 6 @@ -337,7 +337,6 @@ bg_color = Color(0.333333, 0.333333, 0.333333, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 @@ -524,6 +523,40 @@ corner_radius_top_right = 24 corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_bnq62"] + +[sub_resource type="FontFile" id="FontFile_00yus"] +fallbacks = Array[Font]([ExtResource("59")]) +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_573hy"] +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_6qocj"] +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_4fru0"] + [sub_resource type="StyleBoxEmpty" id="105"] [sub_resource type="StyleBoxFlat" id="107"] @@ -765,7 +798,7 @@ GraphNode/constants/port_offset = 10 GraphNode/constants/separation = 1 GraphNode/constants/title_h_offset = -16 GraphNode/constants/title_offset = 20 -GraphNode/fonts/title_font = SubResource("120") +GraphNode/fonts/title_font = SubResource("FontFile_l006w") GraphNode/icons/close = ExtResource("13") GraphNode/icons/port = ExtResource("20") GraphNode/icons/resizer = ExtResource("10") @@ -872,8 +905,42 @@ PopupMenu/styles/separator = SubResource("104") PopupPanel/styles/panel = SubResource("100") ProgressBar/colors/font_color = Color(0.787255, 0.787255, 0.787255, 1) ProjectSettingsEditor/styles/panel = SubResource("70") -Reroute/styles/frame = SubResource("121") -Reroute/styles/selected_frame = SubResource("122") +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/fonts/title_font = SubResource("FontFile_l006w") +Reroute/icons/close = ExtResource("13") +Reroute/icons/port = ExtResource("20") +Reroute/icons/resizer = ExtResource("10") +Reroute/styles/panel = SubResource("121") +Reroute/styles/panel_selected = SubResource("122") +Reroute/styles/titlebar = SubResource("StyleBoxEmpty_bnq62") +Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_bnq62") +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("13") +ReroutePreview/icons/port = ExtResource("20") +ReroutePreview/icons/resizer = ExtResource("10") +ReroutePreview/styles/panel = SubResource("StyleBoxFlat_573hy") +ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_6qocj") +ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_4fru0") +ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_4fru0") RichTextLabel/colors/default_color = Color(0.787255, 0.787255, 0.787255, 1) RichTextLabel/colors/font_color_shadow = Color(0, 0, 0, 0) RichTextLabel/constants/shadow_as_outline = 0 diff --git a/material_maker/theme/default.tres b/material_maker/theme/default.tres index 1bf627957..5cd7daede 100644 --- a/material_maker/theme/default.tres +++ b/material_maker/theme/default.tres @@ -1,4 +1,4 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://3f6cl7v1oyqo"] +[gd_resource type="Theme" load_steps=123 format=3 uid="uid://3f6cl7v1oyqo"] [ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="1"] [ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="2"] @@ -57,7 +57,7 @@ [ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="55"] [ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="56"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2r6u1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_no02t"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -69,7 +69,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yxg8x"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_um1fw"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -81,7 +81,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ki47t"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_csnhk"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -89,10 +89,10 @@ content_margin_bottom = 4.0 bg_color = Color(0.188235, 0.215686, 0.294118, 1) draw_center = false -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x5k5t"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_n60x2"] bg_color = Color(0.189012, 0.217364, 0.292969, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_34urk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y5a6x"] bg_color = Color(1, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -103,7 +103,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ieo3y"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tlhe2"] bg_color = Color(1, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -114,7 +114,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cey4l"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cw1dc"] bg_color = Color(1, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -125,7 +125,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7h8vo"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lx1i3"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -136,7 +136,7 @@ border_width_right = 2 border_width_bottom = 2 border_color = Color(1, 1, 1, 0.9) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hyjaf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3lyus"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -151,14 +151,14 @@ expand_margin_top = 24.0 shadow_color = Color(1, 0.47, 0.42, 0.2) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hdlxw"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cawc4"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 content_margin_bottom = 4.0 bg_color = Color(0.125, 0.14375, 0.19375, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jyqu3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u8xi8"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -171,7 +171,7 @@ border_width_bottom = 1 border_color = Color(0.1, 0.115, 0.155, 1) expand_margin_top = -33.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tuwfd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nwowa"] content_margin_left = 2.0 content_margin_top = 4.0 content_margin_right = 2.0 @@ -183,7 +183,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uoqi5"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m676o"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -194,7 +194,7 @@ border_width_top = 1 border_width_right = 1 border_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_h3bcx"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2axdc"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -206,7 +206,7 @@ border_width_right = 1 border_color = Color(0.125, 0.14375, 0.19375, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m5k5a"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4fsyt"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -218,7 +218,7 @@ border_width_right = 1 border_color = Color(0.1, 0.115, 0.155, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t1r2p"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_80qyd"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -231,7 +231,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.5, 0.51875, 0.56875, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8vxds"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_galaf"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -239,7 +239,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.2, 0.23, 0.31, 0.5) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8xhik"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rfruk"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -249,25 +249,25 @@ draw_center = false border_width_bottom = 1 border_color = Color(0.41, 0.61, 0.91, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_ssee1"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_5hivt"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_fclah"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_1k61k"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_mm1ob"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_c0gf0"] content_margin_left = 4.0 content_margin_top = 0.0 content_margin_right = 4.0 content_margin_bottom = 4.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j5hhk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5ekl1"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -288,35 +288,7 @@ 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_lq1a0"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.87, 0.4, 1) -shadow_color = Color(1, 0.87, 0.4, 0.1) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kijy3"] -bg_color = Color(0, 0, 0, 0) -draw_center = false -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 = 10 -corner_radius_top_right = 10 -corner_radius_bottom_right = 10 -corner_radius_bottom_left = 10 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vh0u7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bveif"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 @@ -326,37 +298,21 @@ border_color = Color(0.376471, 0.376471, 0.376471, 0.701961) corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a83ep"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j15pe"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.9) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.376471, 0.376471, 0.376471, 0.901961) +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_blend = true corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(0, 0, 0, 0.3) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r75l2"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.47, 0.42, 1) -shadow_color = Color(1, 0.47, 0.42, 0.2) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tkp2w"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x1xvx"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 @@ -365,7 +321,7 @@ border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_atwkl"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kqs56"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 @@ -373,29 +329,28 @@ bg_color = Color(0.365, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_1jjoj"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_i2kkk"] color = Color(1, 1, 1, 0.1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5unxl"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jsjob"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.4, 0.4225, 0.4825, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_beb5s"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_46euf"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jd6vm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nel74"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -407,7 +362,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_akmse"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ayhy6"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -420,7 +375,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(1, 1, 1, 0.2) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_26lx2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_utbfw"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -428,7 +383,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1l7n1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bb2gk"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -436,7 +391,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_35duv"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f6bb7"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -448,7 +403,7 @@ border_width_right = 2 border_width_bottom = 2 corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1oqit"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_e7upo"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -461,7 +416,7 @@ border_width_bottom = 2 border_color = Color(0.125, 0.14375, 0.19375, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y4du3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ba0xr"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -474,7 +429,7 @@ border_width_bottom = 2 border_color = Color(0.14, 0.161, 0.217, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1e4cq"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vs7c"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -486,7 +441,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4, 0.4225, 0.4825, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ilfxf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gwtlh"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -498,14 +453,14 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.41, 0.61, 0.91, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_25ngd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jq1l8"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 content_margin_bottom = 4.0 bg_color = Color(0.15, 0.1725, 0.2325, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5irht"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6g3y5"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -519,7 +474,7 @@ border_color = Color(0.4, 0.4225, 0.4825, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ilkv3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vt4d7"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -527,27 +482,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.15, 0.1725, 0.2325, 1) border_color = Color(0.125, 0.14375, 0.19375, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_0xvhf"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_vgr6y"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_a3aaq"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_110s1"] color = Color(1, 1, 1, 0.1) grow_end = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_hkggr"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_7jjyb"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 grow_end = 7.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mqx8w"] +[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_oq556"] +[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 @@ -559,9 +514,43 @@ corner_radius_top_right = 24 corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_4e31m"] +[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="StyleBoxEmpty" id="StyleBoxEmpty_wok37"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xdevm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_60dxn"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -573,7 +562,7 @@ border_width_right = 1 border_color = Color(0.14, 0.161, 0.217, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_b1mv7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u3ovp"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -585,7 +574,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y0l3f"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jjb60"] content_margin_left = 1.0 content_margin_top = 1.0 content_margin_right = 1.0 @@ -599,7 +588,7 @@ border_color = Color(1, 1, 1, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mjmn0"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t02ox"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -607,7 +596,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.4, 0.4225, 0.4825, 1) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0em7r"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xmeh0"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -620,11 +609,11 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4, 0.4225, 0.4825, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_2hbq4"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_rxs0f"] -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_goo8l"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_fsq3j"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gq61q"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8skff"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -632,7 +621,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.08) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_c8f3d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_poxju"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -640,27 +629,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.1, 0.115, 0.155, 1) border_color = Color(0.2, 0.23, 0.31, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_fchn3"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_0wf7e"] color = Color(1, 1, 1, 0.1) grow_begin = 0.0 grow_end = 0.0 vertical = true -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_guyld"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_506je"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.4, 0.4225, 0.4825, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_66b1o"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_17oh2"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.1, 0.115, 0.155, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ecrhk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2rgcg"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -685,11 +674,11 @@ Button/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) Button/colors/icon_color_pressed = Color(0.4715, 0.7015, 1.0465, 1) Button/constants/hseparation = 2 Button/fonts/font = ExtResource("55") -Button/styles/disabled = SubResource("StyleBoxFlat_2r6u1") -Button/styles/focus = SubResource("StyleBoxFlat_yxg8x") -Button/styles/hover = SubResource("StyleBoxFlat_yxg8x") -Button/styles/normal = SubResource("StyleBoxFlat_yxg8x") -Button/styles/pressed = SubResource("StyleBoxFlat_yxg8x") +Button/styles/disabled = SubResource("StyleBoxFlat_no02t") +Button/styles/focus = SubResource("StyleBoxFlat_um1fw") +Button/styles/hover = SubResource("StyleBoxFlat_um1fw") +Button/styles/normal = SubResource("StyleBoxFlat_um1fw") +Button/styles/pressed = SubResource("StyleBoxFlat_um1fw") CheckBox/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) CheckBox/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckBox/colors/font_color_hover = Color(0.88, 0.8845, 0.8965, 1) @@ -703,11 +692,11 @@ CheckBox/icons/checked = ExtResource("34") CheckBox/icons/radio_checked = ExtResource("10") CheckBox/icons/radio_unchecked = ExtResource("13") CheckBox/icons/unchecked = ExtResource("20") -CheckBox/styles/disabled = SubResource("StyleBoxFlat_ki47t") -CheckBox/styles/hover = SubResource("StyleBoxFlat_ki47t") -CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_x5k5t") -CheckBox/styles/normal = SubResource("StyleBoxFlat_ki47t") -CheckBox/styles/pressed = SubResource("StyleBoxFlat_ki47t") +CheckBox/styles/disabled = SubResource("StyleBoxFlat_csnhk") +CheckBox/styles/hover = SubResource("StyleBoxFlat_csnhk") +CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_n60x2") +CheckBox/styles/normal = SubResource("StyleBoxFlat_csnhk") +CheckBox/styles/pressed = SubResource("StyleBoxFlat_csnhk") CheckButton/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) CheckButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckButton/colors/font_color_hover = Color(0.88, 0.8845, 0.8965, 1) @@ -719,15 +708,15 @@ CheckButton/icons/off = ExtResource("50") CheckButton/icons/off_disabled = ExtResource("47") CheckButton/icons/on = ExtResource("38") CheckButton/icons/on_disabled = ExtResource("45") -CheckButton/styles/disabled = SubResource("StyleBoxFlat_yxg8x") -CheckButton/styles/hover = SubResource("StyleBoxFlat_yxg8x") -CheckButton/styles/normal = SubResource("StyleBoxFlat_yxg8x") -CheckButton/styles/pressed = SubResource("StyleBoxFlat_yxg8x") +CheckButton/styles/disabled = SubResource("StyleBoxFlat_um1fw") +CheckButton/styles/hover = SubResource("StyleBoxFlat_um1fw") +CheckButton/styles/normal = SubResource("StyleBoxFlat_um1fw") +CheckButton/styles/pressed = SubResource("StyleBoxFlat_um1fw") ColorPickerButton/constants/hseparation = 0 ColorPickerButton/fonts/font = ExtResource("55") -ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_34urk") -ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_ieo3y") -ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_cey4l") +ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_y5a6x") +ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_tlhe2") +ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_cw1dc") Editor/colors/accent_color = Color(0.41, 0.61, 0.91, 1) Editor/colors/axis_x_color = Color(0.96, 0.2, 0.32, 1) Editor/colors/axis_y_color = Color(0.53, 0.84, 0.01, 1) @@ -756,24 +745,24 @@ Editor/constants/dark_theme = 1 Editor/constants/inspector_margin = 8 Editor/constants/scale = 1 Editor/constants/thumb_size = 64 -Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_7h8vo") -EditorAbout/styles/panel = SubResource("StyleBoxFlat_hyjaf") -EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_hyjaf") -EditorStyles/styles/Background = SubResource("StyleBoxFlat_hdlxw") -EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_jyqu3") -EditorStyles/styles/Content = SubResource("StyleBoxFlat_tuwfd") -EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_uoqi5") -EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_h3bcx") -EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_m5k5a") -EditorStyles/styles/Focus = SubResource("StyleBoxFlat_t1r2p") -EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_8vxds") -EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_8xhik") -EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_yxg8x") -EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_ssee1") -EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_h3bcx") -EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_m5k5a") -EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_fclah") -EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_mm1ob") +Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_lx1i3") +EditorAbout/styles/panel = SubResource("StyleBoxFlat_3lyus") +EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_3lyus") +EditorStyles/styles/Background = SubResource("StyleBoxFlat_cawc4") +EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_u8xi8") +EditorStyles/styles/Content = SubResource("StyleBoxFlat_nwowa") +EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_m676o") +EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_2axdc") +EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_4fsyt") +EditorStyles/styles/Focus = SubResource("StyleBoxFlat_80qyd") +EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_galaf") +EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_rfruk") +EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_um1fw") +EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_5hivt") +EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_2axdc") +EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_4fsyt") +EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_1k61k") +EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_c0gf0") GraphEdit/colors/activity = Color(0.41, 0.61, 0.91, 1) GraphEdit/colors/grid_major = Color(1, 1, 1, 0.15) GraphEdit/colors/grid_minor = Color(1, 1, 1, 0.07) @@ -785,7 +774,7 @@ GraphEdit/icons/minus = ExtResource("31") GraphEdit/icons/more = ExtResource("21") GraphEdit/icons/reset = ExtResource("25") GraphEdit/icons/snap = ExtResource("26") -GraphEdit/styles/bg = SubResource("StyleBoxFlat_j5hhk") +GraphEdit/styles/bg = SubResource("StyleBoxFlat_5ekl1") GraphNode/colors/close_color = Color(1, 1, 1, 0.7) GraphNode/colors/resizer_color = Color(1, 1, 1, 0.7) GraphNode/colors/title_color = Color(1, 1, 1, 1) @@ -800,18 +789,18 @@ GraphNode/fonts/title_font = SubResource("120") GraphNode/icons/close = ExtResource("19") GraphNode/icons/port = ExtResource("32") GraphNode/icons/resizer = ExtResource("33") -GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_lq1a0") -GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_kijy3") -GraphNode/styles/panel = SubResource("StyleBoxFlat_vh0u7") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_a83ep") -GraphNode/styles/position = SubResource("StyleBoxFlat_r75l2") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_tkp2w") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_atwkl") -HSeparator/styles/separator = SubResource("StyleBoxLine_1jjoj") +GraphNode/styles/breakpoint = null +GraphNode/styles/node_highlight = null +GraphNode/styles/panel = SubResource("StyleBoxFlat_bveif") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_j15pe") +GraphNode/styles/position = null +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_x1xvx") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_kqs56") +HSeparator/styles/separator = SubResource("StyleBoxLine_i2kkk") HSlider/icons/grabber = ExtResource("15") HSlider/icons/grabber_highlight = ExtResource("4") -HSlider/styles/grabber_area = SubResource("StyleBoxFlat_5unxl") -HSlider/styles/slider = SubResource("StyleBoxFlat_beb5s") +HSlider/styles/grabber_area = SubResource("StyleBoxFlat_jsjob") +HSlider/styles/slider = SubResource("StyleBoxFlat_46euf") HSplitContainer/constants/separation = 8 HSplitContainer/icons/grabber = ExtResource("24") ItemList/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) @@ -821,19 +810,19 @@ ItemList/constants/hseparation = 0 ItemList/constants/icon_margin = 4 ItemList/constants/line_separation = 0 ItemList/constants/vseparation = 0 -ItemList/styles/bg = SubResource("StyleBoxFlat_jd6vm") -ItemList/styles/bg_focus = SubResource("StyleBoxFlat_t1r2p") -ItemList/styles/cursor = SubResource("StyleBoxFlat_akmse") -ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_akmse") -ItemList/styles/selected = SubResource("StyleBoxFlat_26lx2") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_1l7n1") +ItemList/styles/bg = SubResource("StyleBoxFlat_nel74") +ItemList/styles/bg_focus = SubResource("StyleBoxFlat_80qyd") +ItemList/styles/cursor = SubResource("StyleBoxFlat_ayhy6") +ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_ayhy6") +ItemList/styles/selected = SubResource("StyleBoxFlat_utbfw") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_bb2gk") Label/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) Label/colors/font_color_shadow = Color(0, 0, 0, 0) Label/constants/line_spacing = 0 Label/constants/shadow_as_outline = 0 Label/constants/shadow_offset_x = 1 Label/constants/shadow_offset_y = 1 -Label/styles/normal = SubResource("StyleBoxEmpty_ssee1") +Label/styles/normal = SubResource("StyleBoxEmpty_5hivt") LineEdit/colors/clear_button_color = Color(0.8, 0.8075, 0.8275, 1) LineEdit/colors/clear_button_color_pressed = Color(0.41, 0.61, 0.91, 1) LineEdit/colors/cursor_color = Color(0.8, 0.8075, 0.8275, 1) @@ -844,22 +833,22 @@ LineEdit/colors/selection_color = Color(0.41, 0.61, 0.91, 0.4) LineEdit/constants/minimum_spaces = 12 LineEdit/fonts/font = ExtResource("55") LineEdit/icons/clear = ExtResource("14") -LineEdit/styles/focus = SubResource("StyleBoxFlat_35duv") -LineEdit/styles/normal = SubResource("StyleBoxFlat_1oqit") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_y4du3") +LineEdit/styles/focus = SubResource("StyleBoxFlat_f6bb7") +LineEdit/styles/normal = SubResource("StyleBoxFlat_e7upo") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_ba0xr") LinkButton/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) -LinkButton/styles/focus = SubResource("StyleBoxEmpty_ssee1") +LinkButton/styles/focus = SubResource("StyleBoxEmpty_5hivt") MenuButton/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) MenuButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) MenuButton/colors/font_color_hover = Color(0.88, 0.8845, 0.8965, 1) MenuButton/colors/font_color_pressed = Color(1, 1, 1, 1) MenuButton/constants/hseparation = 0 MenuButton/fonts/font = ExtResource("55") -MenuButton/styles/disabled = SubResource("StyleBoxFlat_yxg8x") -MenuButton/styles/focus = SubResource("StyleBoxFlat_yxg8x") -MenuButton/styles/hover = SubResource("StyleBoxFlat_yxg8x") -MenuButton/styles/normal = SubResource("StyleBoxFlat_yxg8x") -MenuButton/styles/pressed = SubResource("StyleBoxFlat_yxg8x") +MenuButton/styles/disabled = SubResource("StyleBoxFlat_um1fw") +MenuButton/styles/focus = SubResource("StyleBoxFlat_um1fw") +MenuButton/styles/hover = SubResource("StyleBoxFlat_um1fw") +MenuButton/styles/normal = SubResource("StyleBoxFlat_um1fw") +MenuButton/styles/pressed = SubResource("StyleBoxFlat_um1fw") OptionButton/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) OptionButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) OptionButton/colors/font_color_hover = Color(0.88, 0.8845, 0.8965, 1) @@ -870,14 +859,14 @@ OptionButton/constants/hseparation = 4 OptionButton/constants/modulate_arrow = 1 OptionButton/fonts/font = ExtResource("55") OptionButton/icons/arrow = ExtResource("11") -OptionButton/styles/disabled = SubResource("StyleBoxFlat_y4du3") -OptionButton/styles/focus = SubResource("StyleBoxFlat_35duv") -OptionButton/styles/hover = SubResource("StyleBoxFlat_1e4cq") -OptionButton/styles/normal = SubResource("StyleBoxFlat_1oqit") -OptionButton/styles/pressed = SubResource("StyleBoxFlat_ilfxf") -Panel/styles/panel = SubResource("StyleBoxFlat_25ngd") -PanelContainer/styles/panel = SubResource("StyleBoxFlat_yxg8x") -Popup/styles/panel = SubResource("StyleBoxFlat_5irht") +OptionButton/styles/disabled = SubResource("StyleBoxFlat_ba0xr") +OptionButton/styles/focus = SubResource("StyleBoxFlat_f6bb7") +OptionButton/styles/hover = SubResource("StyleBoxFlat_5vs7c") +OptionButton/styles/normal = SubResource("StyleBoxFlat_e7upo") +OptionButton/styles/pressed = SubResource("StyleBoxFlat_gwtlh") +Panel/styles/panel = SubResource("StyleBoxFlat_jq1l8") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_um1fw") +Popup/styles/panel = SubResource("StyleBoxFlat_6g3y5") PopupMenu/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) PopupMenu/colors/font_color_accel = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_disabled = Color(1, 1, 1, 0.3) @@ -893,27 +882,61 @@ PopupMenu/icons/unchecked = ExtResource("43") PopupMenu/icons/visibility_hidden = ExtResource("30") PopupMenu/icons/visibility_visible = ExtResource("8") PopupMenu/icons/visibility_xray = ExtResource("28") -PopupMenu/styles/disabled = SubResource("StyleBoxFlat_yxg8x") -PopupMenu/styles/focus = SubResource("StyleBoxFlat_yxg8x") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_ilkv3") -PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_0xvhf") -PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_a3aaq") -PopupMenu/styles/normal = SubResource("StyleBoxFlat_yxg8x") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_5irht") -PopupMenu/styles/pressed = SubResource("StyleBoxFlat_yxg8x") -PopupMenu/styles/separator = SubResource("StyleBoxLine_hkggr") -PopupPanel/styles/panel = SubResource("StyleBoxFlat_5irht") +PopupMenu/styles/disabled = SubResource("StyleBoxFlat_um1fw") +PopupMenu/styles/focus = SubResource("StyleBoxFlat_um1fw") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_vt4d7") +PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_vgr6y") +PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_110s1") +PopupMenu/styles/normal = SubResource("StyleBoxFlat_um1fw") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_6g3y5") +PopupMenu/styles/pressed = SubResource("StyleBoxFlat_um1fw") +PopupMenu/styles/separator = SubResource("StyleBoxLine_7jjyb") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_6g3y5") ProgressBar/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) -ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_hyjaf") -Reroute/styles/frame = SubResource("StyleBoxFlat_mqx8w") -Reroute/styles/selected_frame = SubResource("StyleBoxFlat_oq556") +ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_3lyus") +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/fonts/title_font = SubResource("120") +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") RichTextLabel/colors/default_color = Color(0.8, 0.8075, 0.8275, 1) RichTextLabel/colors/font_color_shadow = Color(0, 0, 0, 0) RichTextLabel/constants/shadow_as_outline = 0 RichTextLabel/constants/shadow_offset_x = 1 RichTextLabel/constants/shadow_offset_y = 1 -RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_4e31m") -RichTextLabel/styles/normal = SubResource("StyleBoxFlat_j5hhk") +RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_wok37") +RichTextLabel/styles/normal = SubResource("StyleBoxFlat_5ekl1") TabBar/colors/font_color_bg = Color(1, 1, 1, 0.3) TabBar/colors/font_color_fg = Color(0.8, 0.8075, 0.8275, 1) TabBar/constants/hseparation = 4 @@ -922,11 +945,11 @@ TabBar/icons/decrement = ExtResource("42") TabBar/icons/decrement_highlight = ExtResource("37") TabBar/icons/increment = ExtResource("54") TabBar/icons/increment_highlight = ExtResource("39") -TabBar/styles/button = SubResource("StyleBoxFlat_yxg8x") -TabBar/styles/button_pressed = SubResource("StyleBoxFlat_yxg8x") -TabBar/styles/tab_bg = SubResource("StyleBoxFlat_h3bcx") -TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_xdevm") -TabBar/styles/tab_fg = SubResource("StyleBoxFlat_m5k5a") +TabBar/styles/button = SubResource("StyleBoxFlat_um1fw") +TabBar/styles/button_pressed = SubResource("StyleBoxFlat_um1fw") +TabBar/styles/tab_bg = SubResource("StyleBoxFlat_2axdc") +TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_60dxn") +TabBar/styles/tab_fg = SubResource("StyleBoxFlat_4fsyt") TabContainer/colors/font_color_bg = Color(1, 1, 1, 0.3) TabContainer/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) TabContainer/colors/font_color_fg = Color(0.8, 0.8075, 0.8275, 1) @@ -942,10 +965,10 @@ TabContainer/icons/increment = ExtResource("40") TabContainer/icons/increment_highlight = ExtResource("53") TabContainer/icons/menu = ExtResource("51") TabContainer/icons/menu_highlight = ExtResource("48") -TabContainer/styles/panel = SubResource("StyleBoxFlat_b1mv7") -TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_h3bcx") -TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_xdevm") -TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_m5k5a") +TabContainer/styles/panel = SubResource("StyleBoxFlat_u3ovp") +TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_2axdc") +TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_60dxn") +TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_4fsyt") TextEdit/colors/caret_color = Color(0.8, 0.8075, 0.8275, 1) TextEdit/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) TextEdit/colors/selection_color = Color(0.41, 0.61, 0.91, 0.4) @@ -958,11 +981,11 @@ TextEdit/icons/fold = ExtResource("5") TextEdit/icons/folded = ExtResource("3") TextEdit/icons/space = ExtResource("1") TextEdit/icons/tab = ExtResource("2") -TextEdit/styles/focus = SubResource("StyleBoxFlat_1e4cq") -TextEdit/styles/normal = SubResource("StyleBoxFlat_1oqit") -TextEdit/styles/read_only = SubResource("StyleBoxFlat_y4du3") +TextEdit/styles/focus = SubResource("StyleBoxFlat_5vs7c") +TextEdit/styles/normal = SubResource("StyleBoxFlat_e7upo") +TextEdit/styles/read_only = SubResource("StyleBoxFlat_ba0xr") TooltipLabel/colors/font_color = Color(0, 0, 0, 1) -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_y0l3f") +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_jjb60") Tree/colors/custom_button_font_highlight = Color(0.88, 0.8845, 0.8965, 1) Tree/colors/drop_position_color = Color(0.41, 0.61, 0.91, 1) Tree/colors/font_color = Color(0.8, 0.8075, 0.8275, 1) @@ -987,25 +1010,25 @@ Tree/icons/checked = ExtResource("9") Tree/icons/select_arrow = ExtResource("17") Tree/icons/unchecked = ExtResource("36") Tree/icons/updown = ExtResource("23") -Tree/styles/bg = SubResource("StyleBoxFlat_j5hhk") -Tree/styles/bg_focus = SubResource("StyleBoxFlat_t1r2p") -Tree/styles/button_pressed = SubResource("StyleBoxFlat_mjmn0") -Tree/styles/cursor = SubResource("StyleBoxFlat_0em7r") -Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_0em7r") -Tree/styles/custom_button = SubResource("StyleBoxEmpty_2hbq4") -Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_1oqit") -Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_goo8l") -Tree/styles/hover = SubResource("StyleBoxFlat_gq61q") -Tree/styles/selected = SubResource("StyleBoxFlat_26lx2") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_1l7n1") -Tree/styles/title_button_hover = SubResource("StyleBoxFlat_c8f3d") -Tree/styles/title_button_normal = SubResource("StyleBoxFlat_c8f3d") -Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_c8f3d") -VSeparator/styles/separator = SubResource("StyleBoxLine_fchn3") +Tree/styles/bg = SubResource("StyleBoxFlat_5ekl1") +Tree/styles/bg_focus = SubResource("StyleBoxFlat_80qyd") +Tree/styles/button_pressed = SubResource("StyleBoxFlat_t02ox") +Tree/styles/cursor = SubResource("StyleBoxFlat_xmeh0") +Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_xmeh0") +Tree/styles/custom_button = SubResource("StyleBoxEmpty_rxs0f") +Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_e7upo") +Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_fsq3j") +Tree/styles/hover = SubResource("StyleBoxFlat_8skff") +Tree/styles/selected = SubResource("StyleBoxFlat_utbfw") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_bb2gk") +Tree/styles/title_button_hover = SubResource("StyleBoxFlat_poxju") +Tree/styles/title_button_normal = SubResource("StyleBoxFlat_poxju") +Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_poxju") +VSeparator/styles/separator = SubResource("StyleBoxLine_0wf7e") VSlider/icons/grabber = ExtResource("27") VSlider/icons/grabber_highlight = ExtResource("6") -VSlider/styles/grabber_area = SubResource("StyleBoxFlat_guyld") -VSlider/styles/slider = SubResource("StyleBoxFlat_66b1o") +VSlider/styles/grabber_area = SubResource("StyleBoxFlat_506je") +VSlider/styles/slider = SubResource("StyleBoxFlat_17oh2") VSplitContainer/constants/separation = 8 VSplitContainer/icons/grabber = ExtResource("18") Window/colors/title_color = Color(0.8, 0.8075, 0.8275, 1) @@ -1016,4 +1039,4 @@ Window/constants/title_height = 24 Window/fonts/title_font = ExtResource("55") Window/icons/close = ExtResource("16") Window/icons/close_highlight = ExtResource("12") -Window/styles/panel = SubResource("StyleBoxFlat_ecrhk") +Window/styles/panel = SubResource("StyleBoxFlat_2rgcg") diff --git a/material_maker/theme/green.tres b/material_maker/theme/green.tres index 6e3e129e9..623b3c77d 100644 --- a/material_maker/theme/green.tres +++ b/material_maker/theme/green.tres @@ -1,63 +1,63 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://madwyufrcvg3"] - -[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_itoo1"] -[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_wkt2k"] -[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_ym0st"] -[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_x7us0"] -[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_tusbp"] -[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_nvowr"] -[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_s7130"] -[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_e8bux"] -[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_pqom6"] -[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_p6ws7"] -[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_aqb8q"] -[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_sbd8y"] -[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_e2iv4"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_e1tn5"] -[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_jeetk"] -[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_yeq8v"] -[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_j73ib"] -[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_ivroe"] -[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_ine76"] -[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_tlvj3"] -[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_4s28m"] -[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_22d5g"] -[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_j0fr0"] -[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_57sjf"] -[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_eqyga"] -[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_wql20"] -[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_wudh5"] -[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_xkkr7"] -[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_sbx2t"] -[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_v0jck"] -[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_n5bvo"] -[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_4l3hp"] -[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_wtqyo"] -[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_7krba"] -[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_qnpi1"] -[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_1o7hj"] -[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_t8y6x"] -[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_a0fey"] -[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_26746"] -[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_5c2nt"] -[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_gdrjn"] -[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_qvxpk"] -[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_nlmft"] -[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_v57fl"] -[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_qa312"] -[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_d6og1"] -[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_hydva"] -[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_3vupu"] -[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_st3dn"] -[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_quapv"] -[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_wwlfy"] -[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_kt7ae"] -[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_muxoq"] -[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_ij3kr"] -[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_v8giv"] -[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_t1q37"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uihim"] +[gd_resource type="Theme" load_steps=124 format=3 uid="uid://madwyufrcvg3"] + +[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_anphx"] +[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_vx81v"] +[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_ehkys"] +[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_orvtq"] +[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_a2ktv"] +[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_fxsvr"] +[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_2an5k"] +[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_0lcy6"] +[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_f8iiu"] +[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_kungd"] +[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_1smo8"] +[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_kaohp"] +[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_ov8re"] +[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_6ig4r"] +[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_3rjgw"] +[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_fi240"] +[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_x2rfn"] +[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_gmaxa"] +[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_jn0rg"] +[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_qk4td"] +[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_fp3gl"] +[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_hj4di"] +[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_x24v5"] +[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_xqkfq"] +[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_8a03d"] +[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_8g2n4"] +[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_kwrtk"] +[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_n8qro"] +[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_jedvt"] +[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_x5hqg"] +[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_w13er"] +[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_3faqf"] +[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_fwgcn"] +[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_1prxd"] +[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_w2urd"] +[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_qaqnu"] +[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_nk2bh"] +[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_wfadb"] +[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_pwk23"] +[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_nknfe"] +[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_n86s1"] +[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_0872o"] +[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_jmsvd"] +[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_5s1ht"] +[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_jr1vk"] +[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_rgmvh"] +[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_6r5rk"] +[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_ql20f"] +[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_ies6l"] +[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_n1pgn"] +[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_6hcby"] +[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_1o36w"] +[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_xyepo"] +[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_rr1gb"] +[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_o4tiu"] +[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_ihrxr"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6fima"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -69,7 +69,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_87vm3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5baea"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -81,7 +81,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_owr46"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lg5ki"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -89,10 +89,10 @@ content_margin_bottom = 4.0 bg_color = Color(0.209412, 0.294118, 0.188235, 1) draw_center = false -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3edst"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ikvn5"] bg_color = Color(0.209803, 0.292969, 0.189012, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jg0uy"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hjw1r"] bg_color = Color(0.492, 1, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -103,7 +103,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t3n7x"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3m156"] bg_color = Color(0.492, 1, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -114,7 +114,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_eiwq0"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yl4nj"] bg_color = Color(0.492, 1, 0.365, 1) border_width_left = 2 border_width_top = 2 @@ -125,7 +125,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qgn00"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_82ga4"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -136,7 +136,7 @@ border_width_right = 2 border_width_bottom = 2 border_color = Color(1, 1, 1, 0.9) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p2heu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r5v4i"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -151,14 +151,14 @@ expand_margin_top = 24.0 shadow_color = Color(0.536, 1, 0.42, 0.2) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u8sft"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cexwi"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 content_margin_bottom = 4.0 bg_color = Color(0.13875, 0.19375, 0.125, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5pfx4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_alh6e"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -171,7 +171,7 @@ border_width_bottom = 1 border_color = Color(0.111, 0.155, 0.1, 1) expand_margin_top = -33.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0j4vg"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_oh60m"] content_margin_left = 2.0 content_margin_top = 4.0 content_margin_right = 2.0 @@ -183,7 +183,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jj10m"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kqq5g"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -194,7 +194,7 @@ border_width_top = 1 border_width_right = 1 border_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2p3my"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y8oti"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -206,7 +206,7 @@ border_width_right = 1 border_color = Color(0.13875, 0.19375, 0.125, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_at0oj"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jp3jg"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -218,7 +218,7 @@ border_width_right = 1 border_color = Color(0.111, 0.155, 0.1, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qo8jh"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kdjmw"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -231,7 +231,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.51375, 0.56875, 0.5, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_o8y3d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hutpo"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -239,7 +239,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.222, 0.31, 0.2, 0.5) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x07x7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qtp8a"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -249,25 +249,25 @@ draw_center = false border_width_bottom = 1 border_color = Color(0.51, 0.91, 0.41, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_nm3wx"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_2auyi"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_tc10l"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yajt4"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_85uh0"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_a4v3h"] content_margin_left = 4.0 content_margin_top = 0.0 content_margin_right = 4.0 content_margin_bottom = 4.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2igi2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tcmc7"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -280,7 +280,7 @@ border_width_bottom = 1 border_color = Color(0.111, 0.155, 0.1, 1) [sub_resource type="FontFile" id="120"] -fallbacks = Array[Font]([ExtResource("14_e1tn5")]) +fallbacks = Array[Font]([ExtResource("14_6ig4r")]) cache/0/16/0/ascent = 0.0 cache/0/16/0/descent = 0.0 cache/0/16/0/underline_position = 0.0 @@ -288,35 +288,20 @@ 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_u1cqb"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.52, 1, 0.4, 1) -shadow_color = Color(0.52, 1, 0.4, 0.1) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x0www"] -bg_color = Color(0, 0, 0, 0) +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0wqkr"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(0.492, 1, 0.365, 1) draw_center = false -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 = 10 -corner_radius_top_right = 10 -corner_radius_bottom_right = 10 -corner_radius_bottom_left = 10 +border_width_left = 2 +border_width_top = 2 +border_width_right = 2 +border_width_bottom = 2 +corner_detail = 1 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7nofg"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gdpj0"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 @@ -326,76 +311,59 @@ border_color = Color(0.376471, 0.376471, 0.376471, 0.701961) corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ys5fy"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dckhi"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.9) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.376471, 0.376471, 0.376471, 0.901961) +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_blend = true corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(0, 0, 0, 0.3) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r2a36"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.536, 1, 0.42, 1) -shadow_color = Color(0.536, 1, 0.42, 0.2) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5mpke"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vkkru"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(0.492, 1, 0.365, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_v58st"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_g1uh7"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(0.492, 1, 0.365, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_ym2jh"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_qt5eo"] color = Color(1, 1, 1, 0.1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1kqdk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tai12"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.4165, 0.4825, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4cfyn"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3v38k"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ocqml"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_h2a72"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -407,7 +375,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y1nv5"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3lhwh"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -420,7 +388,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(1, 1, 1, 0.2) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ibwpn"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3yet4"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -428,7 +396,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x1jbm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aseob"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -436,7 +404,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_frkog"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d6lux"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -448,7 +416,7 @@ border_width_right = 2 border_width_bottom = 2 corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0a5ba"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1beoj"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -461,7 +429,7 @@ border_width_bottom = 2 border_color = Color(0.13875, 0.19375, 0.125, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jjq4m"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sgfku"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -474,7 +442,7 @@ border_width_bottom = 2 border_color = Color(0.1554, 0.217, 0.14, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_itm8l"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_swmlr"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -486,7 +454,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4165, 0.4825, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ufau1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_shurq"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -498,14 +466,14 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.51, 0.91, 0.41, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y86l0"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_17xur"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 content_margin_bottom = 4.0 bg_color = Color(0.1665, 0.2325, 0.15, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gndgt"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uoeuq"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -519,7 +487,7 @@ border_color = Color(0.4165, 0.4825, 0.4, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_it4ay"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ypbht"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -527,27 +495,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.1665, 0.2325, 0.15, 1) border_color = Color(0.13875, 0.19375, 0.125, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_acchq"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_7unep"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_08hc7"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_c4ffy"] color = Color(1, 1, 1, 0.1) grow_end = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_3j06m"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_btl4x"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 grow_end = 7.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_swlwu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ubo7f"] 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_p1qcf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lw5xg"] bg_color = Color(0.376471, 0.376471, 0.376471, 1) border_width_left = 1 border_width_top = 1 @@ -559,9 +527,43 @@ corner_radius_top_right = 24 corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lc2vr"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_bi47u"] + +[sub_resource type="FontFile" id="FontFile_00yus"] +fallbacks = Array[Font]([ExtResource("14_6ig4r")]) +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_lxoey"] +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_bb0ji"] +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_o4hg7"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_61v4v"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yuy16"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k3keh"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -573,7 +575,7 @@ border_width_right = 1 border_color = Color(0.1554, 0.217, 0.14, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d5sp8"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imi4d"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -585,7 +587,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_002l1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_conr6"] content_margin_left = 1.0 content_margin_top = 1.0 content_margin_right = 1.0 @@ -599,7 +601,7 @@ border_color = Color(1, 1, 1, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j8d2i"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bp3qy"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -607,7 +609,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.4165, 0.4825, 0.4, 1) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nrd3c"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_timsf"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -620,11 +622,11 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4165, 0.4825, 0.4, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_qowir"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_g18p6"] -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_r51eb"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_cta71"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ll1gh"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5hmt8"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -632,7 +634,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.08) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8lffl"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vyka5"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -640,27 +642,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.111, 0.155, 0.1, 1) border_color = Color(0.222, 0.31, 0.2, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_c02m6"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_0kjqt"] color = Color(1, 1, 1, 0.1) grow_begin = 0.0 grow_end = 0.0 vertical = true -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_erkeo"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_myvhg"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.4165, 0.4825, 0.4, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7rkwn"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k8gok"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.111, 0.155, 0.1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gkymd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_txtil"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -683,12 +685,12 @@ Button/colors/font_color_pressed = Color(0.51, 0.91, 0.41, 1) Button/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) Button/colors/icon_color_pressed = Color(0.5865, 1.0465, 0.4715, 1) Button/constants/hseparation = 2 -Button/fonts/font = ExtResource("1_itoo1") -Button/styles/disabled = SubResource("StyleBoxFlat_uihim") -Button/styles/focus = SubResource("StyleBoxFlat_87vm3") -Button/styles/hover = SubResource("StyleBoxFlat_87vm3") -Button/styles/normal = SubResource("StyleBoxFlat_87vm3") -Button/styles/pressed = SubResource("StyleBoxFlat_87vm3") +Button/fonts/font = ExtResource("1_anphx") +Button/styles/disabled = SubResource("StyleBoxFlat_6fima") +Button/styles/focus = SubResource("StyleBoxFlat_5baea") +Button/styles/hover = SubResource("StyleBoxFlat_5baea") +Button/styles/normal = SubResource("StyleBoxFlat_5baea") +Button/styles/pressed = SubResource("StyleBoxFlat_5baea") CheckBox/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) CheckBox/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckBox/colors/font_color_hover = Color(0.8833, 0.8965, 0.88, 1) @@ -697,16 +699,16 @@ CheckBox/colors/font_color_pressed = Color(0.51, 0.91, 0.41, 1) CheckBox/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckBox/constants/check_vadjust = 0 CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = ExtResource("1_itoo1") -CheckBox/icons/checked = ExtResource("2_wkt2k") -CheckBox/icons/radio_checked = ExtResource("3_ym0st") -CheckBox/icons/radio_unchecked = ExtResource("4_x7us0") -CheckBox/icons/unchecked = ExtResource("5_tusbp") -CheckBox/styles/disabled = SubResource("StyleBoxFlat_owr46") -CheckBox/styles/hover = SubResource("StyleBoxFlat_owr46") -CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_3edst") -CheckBox/styles/normal = SubResource("StyleBoxFlat_owr46") -CheckBox/styles/pressed = SubResource("StyleBoxFlat_owr46") +CheckBox/fonts/font = ExtResource("1_anphx") +CheckBox/icons/checked = ExtResource("2_vx81v") +CheckBox/icons/radio_checked = ExtResource("3_ehkys") +CheckBox/icons/radio_unchecked = ExtResource("4_orvtq") +CheckBox/icons/unchecked = ExtResource("5_a2ktv") +CheckBox/styles/disabled = SubResource("StyleBoxFlat_lg5ki") +CheckBox/styles/hover = SubResource("StyleBoxFlat_lg5ki") +CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_ikvn5") +CheckBox/styles/normal = SubResource("StyleBoxFlat_lg5ki") +CheckBox/styles/pressed = SubResource("StyleBoxFlat_lg5ki") CheckButton/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) CheckButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckButton/colors/font_color_hover = Color(0.8833, 0.8965, 0.88, 1) @@ -714,19 +716,19 @@ CheckButton/colors/font_color_pressed = Color(0.51, 0.91, 0.41, 1) CheckButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckButton/constants/check_vadjust = 0 CheckButton/constants/hseparation = 4 -CheckButton/icons/off = ExtResource("6_nvowr") -CheckButton/icons/off_disabled = ExtResource("7_s7130") -CheckButton/icons/on = ExtResource("8_e8bux") -CheckButton/icons/on_disabled = ExtResource("9_pqom6") -CheckButton/styles/disabled = SubResource("StyleBoxFlat_87vm3") -CheckButton/styles/hover = SubResource("StyleBoxFlat_87vm3") -CheckButton/styles/normal = SubResource("StyleBoxFlat_87vm3") -CheckButton/styles/pressed = SubResource("StyleBoxFlat_87vm3") +CheckButton/icons/off = ExtResource("6_fxsvr") +CheckButton/icons/off_disabled = ExtResource("7_2an5k") +CheckButton/icons/on = ExtResource("8_0lcy6") +CheckButton/icons/on_disabled = ExtResource("9_f8iiu") +CheckButton/styles/disabled = SubResource("StyleBoxFlat_5baea") +CheckButton/styles/hover = SubResource("StyleBoxFlat_5baea") +CheckButton/styles/normal = SubResource("StyleBoxFlat_5baea") +CheckButton/styles/pressed = SubResource("StyleBoxFlat_5baea") ColorPickerButton/constants/hseparation = 0 -ColorPickerButton/fonts/font = ExtResource("1_itoo1") -ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_jg0uy") -ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_t3n7x") -ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_eiwq0") +ColorPickerButton/fonts/font = ExtResource("1_anphx") +ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_hjw1r") +ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_3m156") +ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_yl4nj") Editor/colors/accent_color = Color(0.51, 0.91, 0.41, 1) Editor/colors/axis_x_color = Color(0.352, 0.96, 0.2, 1) Editor/colors/axis_y_color = Color(0.176, 0.84, 0.01, 1) @@ -755,24 +757,24 @@ Editor/constants/dark_theme = 1 Editor/constants/inspector_margin = 8 Editor/constants/scale = 1 Editor/constants/thumb_size = 64 -Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_qgn00") -EditorAbout/styles/panel = SubResource("StyleBoxFlat_p2heu") -EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_p2heu") -EditorStyles/styles/Background = SubResource("StyleBoxFlat_u8sft") -EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_5pfx4") -EditorStyles/styles/Content = SubResource("StyleBoxFlat_0j4vg") -EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_jj10m") -EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_2p3my") -EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_at0oj") -EditorStyles/styles/Focus = SubResource("StyleBoxFlat_qo8jh") -EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_o8y3d") -EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_x07x7") -EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_87vm3") -EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_nm3wx") -EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_2p3my") -EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_at0oj") -EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_tc10l") -EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_85uh0") +Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_82ga4") +EditorAbout/styles/panel = SubResource("StyleBoxFlat_r5v4i") +EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_r5v4i") +EditorStyles/styles/Background = SubResource("StyleBoxFlat_cexwi") +EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_alh6e") +EditorStyles/styles/Content = SubResource("StyleBoxFlat_oh60m") +EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_kqq5g") +EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_y8oti") +EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_jp3jg") +EditorStyles/styles/Focus = SubResource("StyleBoxFlat_kdjmw") +EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_hutpo") +EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_qtp8a") +EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_5baea") +EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_2auyi") +EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_y8oti") +EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_jp3jg") +EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_yajt4") +EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_a4v3h") GraphEdit/colors/activity = Color(0.51, 0.91, 0.41, 1) GraphEdit/colors/grid_major = Color(1, 1, 1, 0.15) GraphEdit/colors/grid_minor = Color(1, 1, 1, 0.07) @@ -780,11 +782,11 @@ GraphEdit/colors/selection_fill = Color(0.51, 0.91, 0.41, 0.3) GraphEdit/colors/selection_stroke = Color(0.51, 0.91, 0.41, 0.8) GraphEdit/constants/bezier_len_neg = 160 GraphEdit/constants/bezier_len_pos = 80 -GraphEdit/icons/minus = ExtResource("10_p6ws7") -GraphEdit/icons/more = ExtResource("11_aqb8q") -GraphEdit/icons/reset = ExtResource("12_sbd8y") -GraphEdit/icons/snap = ExtResource("13_e2iv4") -GraphEdit/styles/bg = SubResource("StyleBoxFlat_2igi2") +GraphEdit/icons/minus = ExtResource("10_kungd") +GraphEdit/icons/more = ExtResource("11_1smo8") +GraphEdit/icons/reset = ExtResource("12_kaohp") +GraphEdit/icons/snap = ExtResource("13_ov8re") +GraphEdit/styles/bg = SubResource("StyleBoxFlat_tcmc7") GraphNode/colors/close_color = Color(1, 1, 1, 0.7) GraphNode/colors/resizer_color = Color(1, 1, 1, 0.7) GraphNode/colors/title_color = Color(1, 1, 1, 1) @@ -796,23 +798,23 @@ GraphNode/constants/separation = 1 GraphNode/constants/title_h_offset = -16 GraphNode/constants/title_offset = 20 GraphNode/fonts/title_font = SubResource("120") -GraphNode/icons/close = ExtResource("15_jeetk") -GraphNode/icons/port = ExtResource("16_yeq8v") -GraphNode/icons/resizer = ExtResource("17_j73ib") -GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_u1cqb") -GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_x0www") -GraphNode/styles/panel = SubResource("StyleBoxFlat_7nofg") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_ys5fy") -GraphNode/styles/position = SubResource("StyleBoxFlat_r2a36") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_5mpke") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_v58st") -HSeparator/styles/separator = SubResource("StyleBoxLine_ym2jh") -HSlider/icons/grabber = ExtResource("18_ivroe") -HSlider/icons/grabber_highlight = ExtResource("19_ine76") -HSlider/styles/grabber_area = SubResource("StyleBoxFlat_1kqdk") -HSlider/styles/slider = SubResource("StyleBoxFlat_4cfyn") +GraphNode/icons/close = ExtResource("15_3rjgw") +GraphNode/icons/port = ExtResource("16_fi240") +GraphNode/icons/resizer = ExtResource("17_x2rfn") +GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_0wqkr") +GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_0wqkr") +GraphNode/styles/panel = SubResource("StyleBoxFlat_gdpj0") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_dckhi") +GraphNode/styles/position = SubResource("StyleBoxFlat_0wqkr") +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_vkkru") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_g1uh7") +HSeparator/styles/separator = SubResource("StyleBoxLine_qt5eo") +HSlider/icons/grabber = ExtResource("18_gmaxa") +HSlider/icons/grabber_highlight = ExtResource("19_jn0rg") +HSlider/styles/grabber_area = SubResource("StyleBoxFlat_tai12") +HSlider/styles/slider = SubResource("StyleBoxFlat_3v38k") HSplitContainer/constants/separation = 8 -HSplitContainer/icons/grabber = ExtResource("20_tlvj3") +HSplitContainer/icons/grabber = ExtResource("20_qk4td") ItemList/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) ItemList/colors/font_color_selected = Color(1, 1, 1, 1) ItemList/colors/guide_color = Color(1, 1, 1, 0.05) @@ -820,19 +822,19 @@ ItemList/constants/hseparation = 0 ItemList/constants/icon_margin = 4 ItemList/constants/line_separation = 0 ItemList/constants/vseparation = 0 -ItemList/styles/bg = SubResource("StyleBoxFlat_ocqml") -ItemList/styles/bg_focus = SubResource("StyleBoxFlat_qo8jh") -ItemList/styles/cursor = SubResource("StyleBoxFlat_y1nv5") -ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_y1nv5") -ItemList/styles/selected = SubResource("StyleBoxFlat_ibwpn") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_x1jbm") +ItemList/styles/bg = SubResource("StyleBoxFlat_h2a72") +ItemList/styles/bg_focus = SubResource("StyleBoxFlat_kdjmw") +ItemList/styles/cursor = SubResource("StyleBoxFlat_3lhwh") +ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_3lhwh") +ItemList/styles/selected = SubResource("StyleBoxFlat_3yet4") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_aseob") Label/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) Label/colors/font_color_shadow = Color(0, 0, 0, 0) Label/constants/line_spacing = 0 Label/constants/shadow_as_outline = 0 Label/constants/shadow_offset_x = 1 Label/constants/shadow_offset_y = 1 -Label/styles/normal = SubResource("StyleBoxEmpty_nm3wx") +Label/styles/normal = SubResource("StyleBoxEmpty_2auyi") LineEdit/colors/clear_button_color = Color(0.8055, 0.8275, 0.8, 1) LineEdit/colors/clear_button_color_pressed = Color(0.51, 0.91, 0.41, 1) LineEdit/colors/cursor_color = Color(0.8055, 0.8275, 0.8, 1) @@ -841,24 +843,24 @@ LineEdit/colors/font_color_selected = Color(1, 1, 1, 1) LineEdit/colors/read_only = Color(1, 1, 1, 0.3) LineEdit/colors/selection_color = Color(0.51, 0.91, 0.41, 0.4) LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = ExtResource("1_itoo1") -LineEdit/icons/clear = ExtResource("21_4s28m") -LineEdit/styles/focus = SubResource("StyleBoxFlat_frkog") -LineEdit/styles/normal = SubResource("StyleBoxFlat_0a5ba") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_jjq4m") +LineEdit/fonts/font = ExtResource("1_anphx") +LineEdit/icons/clear = ExtResource("21_fp3gl") +LineEdit/styles/focus = SubResource("StyleBoxFlat_d6lux") +LineEdit/styles/normal = SubResource("StyleBoxFlat_1beoj") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_sgfku") LinkButton/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) -LinkButton/styles/focus = SubResource("StyleBoxEmpty_nm3wx") +LinkButton/styles/focus = SubResource("StyleBoxEmpty_2auyi") MenuButton/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) MenuButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) MenuButton/colors/font_color_hover = Color(0.8833, 0.8965, 0.88, 1) MenuButton/colors/font_color_pressed = Color(1, 1, 1, 1) MenuButton/constants/hseparation = 0 -MenuButton/fonts/font = ExtResource("1_itoo1") -MenuButton/styles/disabled = SubResource("StyleBoxFlat_87vm3") -MenuButton/styles/focus = SubResource("StyleBoxFlat_87vm3") -MenuButton/styles/hover = SubResource("StyleBoxFlat_87vm3") -MenuButton/styles/normal = SubResource("StyleBoxFlat_87vm3") -MenuButton/styles/pressed = SubResource("StyleBoxFlat_87vm3") +MenuButton/fonts/font = ExtResource("1_anphx") +MenuButton/styles/disabled = SubResource("StyleBoxFlat_5baea") +MenuButton/styles/focus = SubResource("StyleBoxFlat_5baea") +MenuButton/styles/hover = SubResource("StyleBoxFlat_5baea") +MenuButton/styles/normal = SubResource("StyleBoxFlat_5baea") +MenuButton/styles/pressed = SubResource("StyleBoxFlat_5baea") OptionButton/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) OptionButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) OptionButton/colors/font_color_hover = Color(0.8833, 0.8965, 0.88, 1) @@ -867,65 +869,99 @@ OptionButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) OptionButton/constants/arrow_margin = 4 OptionButton/constants/hseparation = 4 OptionButton/constants/modulate_arrow = 1 -OptionButton/fonts/font = ExtResource("1_itoo1") -OptionButton/icons/arrow = ExtResource("22_22d5g") -OptionButton/styles/disabled = SubResource("StyleBoxFlat_jjq4m") -OptionButton/styles/focus = SubResource("StyleBoxFlat_frkog") -OptionButton/styles/hover = SubResource("StyleBoxFlat_itm8l") -OptionButton/styles/normal = SubResource("StyleBoxFlat_0a5ba") -OptionButton/styles/pressed = SubResource("StyleBoxFlat_ufau1") -Panel/styles/panel = SubResource("StyleBoxFlat_y86l0") -PanelContainer/styles/panel = SubResource("StyleBoxFlat_87vm3") -Popup/styles/panel = SubResource("StyleBoxFlat_gndgt") +OptionButton/fonts/font = ExtResource("1_anphx") +OptionButton/icons/arrow = ExtResource("22_hj4di") +OptionButton/styles/disabled = SubResource("StyleBoxFlat_sgfku") +OptionButton/styles/focus = SubResource("StyleBoxFlat_d6lux") +OptionButton/styles/hover = SubResource("StyleBoxFlat_swmlr") +OptionButton/styles/normal = SubResource("StyleBoxFlat_1beoj") +OptionButton/styles/pressed = SubResource("StyleBoxFlat_shurq") +Panel/styles/panel = SubResource("StyleBoxFlat_17xur") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_5baea") +Popup/styles/panel = SubResource("StyleBoxFlat_uoeuq") PopupMenu/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) PopupMenu/colors/font_color_accel = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_disabled = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_hover = Color(0.8833, 0.8965, 0.88, 1) PopupMenu/constants/hseparation = 4 PopupMenu/constants/vseparation = 5 -PopupMenu/fonts/font = ExtResource("1_itoo1") -PopupMenu/icons/checked = ExtResource("23_j0fr0") -PopupMenu/icons/radio_checked = ExtResource("24_57sjf") -PopupMenu/icons/radio_unchecked = ExtResource("25_eqyga") -PopupMenu/icons/submenu = ExtResource("26_wql20") -PopupMenu/icons/unchecked = ExtResource("27_wudh5") -PopupMenu/icons/visibility_hidden = ExtResource("28_xkkr7") -PopupMenu/icons/visibility_visible = ExtResource("29_sbx2t") -PopupMenu/icons/visibility_xray = ExtResource("30_v0jck") -PopupMenu/styles/disabled = SubResource("StyleBoxFlat_87vm3") -PopupMenu/styles/focus = SubResource("StyleBoxFlat_87vm3") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_it4ay") -PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_acchq") -PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_08hc7") -PopupMenu/styles/normal = SubResource("StyleBoxFlat_87vm3") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_gndgt") -PopupMenu/styles/pressed = SubResource("StyleBoxFlat_87vm3") -PopupMenu/styles/separator = SubResource("StyleBoxLine_3j06m") -PopupPanel/styles/panel = SubResource("StyleBoxFlat_gndgt") +PopupMenu/fonts/font = ExtResource("1_anphx") +PopupMenu/icons/checked = ExtResource("23_x24v5") +PopupMenu/icons/radio_checked = ExtResource("24_xqkfq") +PopupMenu/icons/radio_unchecked = ExtResource("25_8a03d") +PopupMenu/icons/submenu = ExtResource("26_8g2n4") +PopupMenu/icons/unchecked = ExtResource("27_kwrtk") +PopupMenu/icons/visibility_hidden = ExtResource("28_n8qro") +PopupMenu/icons/visibility_visible = ExtResource("29_jedvt") +PopupMenu/icons/visibility_xray = ExtResource("30_x5hqg") +PopupMenu/styles/disabled = SubResource("StyleBoxFlat_5baea") +PopupMenu/styles/focus = SubResource("StyleBoxFlat_5baea") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_ypbht") +PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_7unep") +PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_c4ffy") +PopupMenu/styles/normal = SubResource("StyleBoxFlat_5baea") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_uoeuq") +PopupMenu/styles/pressed = SubResource("StyleBoxFlat_5baea") +PopupMenu/styles/separator = SubResource("StyleBoxLine_btl4x") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_uoeuq") ProgressBar/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) -ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_p2heu") -Reroute/styles/frame = SubResource("StyleBoxFlat_swlwu") -Reroute/styles/selected_frame = SubResource("StyleBoxFlat_p1qcf") +ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_r5v4i") +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/fonts/title_font = SubResource("120") +Reroute/icons/close = ExtResource("15_3rjgw") +Reroute/icons/port = ExtResource("16_fi240") +Reroute/icons/resizer = ExtResource("17_x2rfn") +Reroute/styles/panel = SubResource("StyleBoxFlat_ubo7f") +Reroute/styles/panel_selected = SubResource("StyleBoxFlat_lw5xg") +Reroute/styles/titlebar = SubResource("StyleBoxEmpty_bi47u") +Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_bi47u") +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("15_3rjgw") +ReroutePreview/icons/port = ExtResource("16_fi240") +ReroutePreview/icons/resizer = ExtResource("17_x2rfn") +ReroutePreview/styles/panel = SubResource("StyleBoxFlat_lxoey") +ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_bb0ji") +ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_o4hg7") +ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_o4hg7") RichTextLabel/colors/default_color = Color(0.8055, 0.8275, 0.8, 1) RichTextLabel/colors/font_color_shadow = Color(0, 0, 0, 0) RichTextLabel/constants/shadow_as_outline = 0 RichTextLabel/constants/shadow_offset_x = 1 RichTextLabel/constants/shadow_offset_y = 1 -RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_lc2vr") -RichTextLabel/styles/normal = SubResource("StyleBoxFlat_2igi2") +RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_61v4v") +RichTextLabel/styles/normal = SubResource("StyleBoxFlat_tcmc7") TabBar/colors/font_color_bg = Color(1, 1, 1, 0.3) TabBar/colors/font_color_fg = Color(0.8055, 0.8275, 0.8, 1) TabBar/constants/hseparation = 4 -TabBar/icons/close = ExtResource("31_n5bvo") -TabBar/icons/decrement = ExtResource("32_4l3hp") -TabBar/icons/decrement_highlight = ExtResource("33_wtqyo") -TabBar/icons/increment = ExtResource("34_7krba") -TabBar/icons/increment_highlight = ExtResource("35_qnpi1") -TabBar/styles/button = SubResource("StyleBoxFlat_87vm3") -TabBar/styles/button_pressed = SubResource("StyleBoxFlat_87vm3") -TabBar/styles/tab_bg = SubResource("StyleBoxFlat_2p3my") -TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_yuy16") -TabBar/styles/tab_fg = SubResource("StyleBoxFlat_at0oj") +TabBar/icons/close = ExtResource("31_w13er") +TabBar/icons/decrement = ExtResource("32_3faqf") +TabBar/icons/decrement_highlight = ExtResource("33_fwgcn") +TabBar/icons/increment = ExtResource("34_1prxd") +TabBar/icons/increment_highlight = ExtResource("35_w2urd") +TabBar/styles/button = SubResource("StyleBoxFlat_5baea") +TabBar/styles/button_pressed = SubResource("StyleBoxFlat_5baea") +TabBar/styles/tab_bg = SubResource("StyleBoxFlat_y8oti") +TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_k3keh") +TabBar/styles/tab_fg = SubResource("StyleBoxFlat_jp3jg") TabContainer/colors/font_color_bg = Color(1, 1, 1, 0.3) TabContainer/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) TabContainer/colors/font_color_fg = Color(0.8055, 0.8275, 0.8, 1) @@ -934,17 +970,17 @@ TabContainer/constants/label_valign_bg = 0 TabContainer/constants/label_valign_fg = 0 TabContainer/constants/side_margin = 0 TabContainer/constants/top_margin = 24 -TabContainer/fonts/font = ExtResource("1_itoo1") -TabContainer/icons/decrement = ExtResource("36_1o7hj") -TabContainer/icons/decrement_highlight = ExtResource("37_t8y6x") -TabContainer/icons/increment = ExtResource("38_a0fey") -TabContainer/icons/increment_highlight = ExtResource("39_26746") -TabContainer/icons/menu = ExtResource("40_5c2nt") -TabContainer/icons/menu_highlight = ExtResource("41_gdrjn") -TabContainer/styles/panel = SubResource("StyleBoxFlat_d5sp8") -TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_2p3my") -TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_yuy16") -TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_at0oj") +TabContainer/fonts/font = ExtResource("1_anphx") +TabContainer/icons/decrement = ExtResource("36_qaqnu") +TabContainer/icons/decrement_highlight = ExtResource("37_nk2bh") +TabContainer/icons/increment = ExtResource("38_wfadb") +TabContainer/icons/increment_highlight = ExtResource("39_pwk23") +TabContainer/icons/menu = ExtResource("40_nknfe") +TabContainer/icons/menu_highlight = ExtResource("41_n86s1") +TabContainer/styles/panel = SubResource("StyleBoxFlat_imi4d") +TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_y8oti") +TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_k3keh") +TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_jp3jg") TextEdit/colors/caret_color = Color(0.8055, 0.8275, 0.8, 1) TextEdit/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) TextEdit/colors/selection_color = Color(0.51, 0.91, 0.41, 0.4) @@ -952,16 +988,16 @@ TextEdit/constants/completion_lines = 0 TextEdit/constants/completion_max_width = 0 TextEdit/constants/completion_scroll_width = 0 TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = ExtResource("1_itoo1") -TextEdit/icons/fold = ExtResource("42_qvxpk") -TextEdit/icons/folded = ExtResource("43_nlmft") -TextEdit/icons/space = ExtResource("44_v57fl") -TextEdit/icons/tab = ExtResource("45_qa312") -TextEdit/styles/focus = SubResource("StyleBoxFlat_itm8l") -TextEdit/styles/normal = SubResource("StyleBoxFlat_0a5ba") -TextEdit/styles/read_only = SubResource("StyleBoxFlat_jjq4m") +TextEdit/fonts/font = ExtResource("1_anphx") +TextEdit/icons/fold = ExtResource("42_0872o") +TextEdit/icons/folded = ExtResource("43_jmsvd") +TextEdit/icons/space = ExtResource("44_5s1ht") +TextEdit/icons/tab = ExtResource("45_jr1vk") +TextEdit/styles/focus = SubResource("StyleBoxFlat_swmlr") +TextEdit/styles/normal = SubResource("StyleBoxFlat_1beoj") +TextEdit/styles/read_only = SubResource("StyleBoxFlat_sgfku") TooltipLabel/colors/font_color = Color(0, 0, 0, 1) -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_002l1") +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_conr6") Tree/colors/custom_button_font_highlight = Color(0.8833, 0.8965, 0.88, 1) Tree/colors/drop_position_color = Color(0.51, 0.91, 0.41, 1) Tree/colors/font_color = Color(0.8055, 0.8275, 0.8, 1) @@ -978,41 +1014,41 @@ Tree/constants/item_margin = 12 Tree/constants/scroll_border = 40 Tree/constants/scroll_speed = 12 Tree/constants/vseparation = 4 -Tree/fonts/font = ExtResource("1_itoo1") -Tree/fonts/title_button_font = ExtResource("1_itoo1") -Tree/icons/arrow = ExtResource("46_d6og1") -Tree/icons/arrow_collapsed = ExtResource("47_hydva") -Tree/icons/checked = ExtResource("48_3vupu") -Tree/icons/select_arrow = ExtResource("49_st3dn") -Tree/icons/unchecked = ExtResource("50_quapv") -Tree/icons/updown = ExtResource("51_wwlfy") -Tree/styles/bg = SubResource("StyleBoxFlat_2igi2") -Tree/styles/bg_focus = SubResource("StyleBoxFlat_qo8jh") -Tree/styles/button_pressed = SubResource("StyleBoxFlat_j8d2i") -Tree/styles/cursor = SubResource("StyleBoxFlat_nrd3c") -Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_nrd3c") -Tree/styles/custom_button = SubResource("StyleBoxEmpty_qowir") -Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_0a5ba") -Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_r51eb") -Tree/styles/hover = SubResource("StyleBoxFlat_ll1gh") -Tree/styles/selected = SubResource("StyleBoxFlat_ibwpn") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_x1jbm") -Tree/styles/title_button_hover = SubResource("StyleBoxFlat_8lffl") -Tree/styles/title_button_normal = SubResource("StyleBoxFlat_8lffl") -Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_8lffl") -VSeparator/styles/separator = SubResource("StyleBoxLine_c02m6") -VSlider/icons/grabber = ExtResource("52_kt7ae") -VSlider/icons/grabber_highlight = ExtResource("53_muxoq") -VSlider/styles/grabber_area = SubResource("StyleBoxFlat_erkeo") -VSlider/styles/slider = SubResource("StyleBoxFlat_7rkwn") +Tree/fonts/font = ExtResource("1_anphx") +Tree/fonts/title_button_font = ExtResource("1_anphx") +Tree/icons/arrow = ExtResource("46_rgmvh") +Tree/icons/arrow_collapsed = ExtResource("47_6r5rk") +Tree/icons/checked = ExtResource("48_ql20f") +Tree/icons/select_arrow = ExtResource("49_ies6l") +Tree/icons/unchecked = ExtResource("50_n1pgn") +Tree/icons/updown = ExtResource("51_6hcby") +Tree/styles/bg = SubResource("StyleBoxFlat_tcmc7") +Tree/styles/bg_focus = SubResource("StyleBoxFlat_kdjmw") +Tree/styles/button_pressed = SubResource("StyleBoxFlat_bp3qy") +Tree/styles/cursor = SubResource("StyleBoxFlat_timsf") +Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_timsf") +Tree/styles/custom_button = SubResource("StyleBoxEmpty_g18p6") +Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_1beoj") +Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_cta71") +Tree/styles/hover = SubResource("StyleBoxFlat_5hmt8") +Tree/styles/selected = SubResource("StyleBoxFlat_3yet4") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_aseob") +Tree/styles/title_button_hover = SubResource("StyleBoxFlat_vyka5") +Tree/styles/title_button_normal = SubResource("StyleBoxFlat_vyka5") +Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_vyka5") +VSeparator/styles/separator = SubResource("StyleBoxLine_0kjqt") +VSlider/icons/grabber = ExtResource("52_1o36w") +VSlider/icons/grabber_highlight = ExtResource("53_xyepo") +VSlider/styles/grabber_area = SubResource("StyleBoxFlat_myvhg") +VSlider/styles/slider = SubResource("StyleBoxFlat_k8gok") VSplitContainer/constants/separation = 8 -VSplitContainer/icons/grabber = ExtResource("54_ij3kr") +VSplitContainer/icons/grabber = ExtResource("54_rr1gb") Window/colors/title_color = Color(0.8055, 0.8275, 0.8, 1) Window/constants/close_h_ofs = 22 Window/constants/close_v_ofs = 20 Window/constants/scaleborder_size = 4 Window/constants/title_height = 24 -Window/fonts/title_font = ExtResource("1_itoo1") -Window/icons/close = ExtResource("55_v8giv") -Window/icons/close_highlight = ExtResource("56_t1q37") -Window/styles/panel = SubResource("StyleBoxFlat_gkymd") +Window/fonts/title_font = ExtResource("1_anphx") +Window/icons/close = ExtResource("55_o4tiu") +Window/icons/close_highlight = ExtResource("56_ihrxr") +Window/styles/panel = SubResource("StyleBoxFlat_txtil") diff --git a/material_maker/theme/light.tres b/material_maker/theme/light.tres index b277fccdd..312196670 100644 --- a/material_maker/theme/light.tres +++ b/material_maker/theme/light.tres @@ -1,66 +1,66 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://d12pe6icsioje"] - -[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_ib1bu"] -[ext_resource type="Texture2D" uid="uid://bg66nf03a1wj0" path="res://material_maker/theme/light/checkbox_checked.png" id="2_3x2wy"] -[ext_resource type="Texture2D" uid="uid://ctamubqvnfppj" path="res://material_maker/theme/light/checkbox_radio_checked.png" id="3_frm0t"] -[ext_resource type="Texture2D" uid="uid://8ulk7ii706l4" path="res://material_maker/theme/light/checkbox_radio_unchecked.png" id="4_ll476"] -[ext_resource type="Texture2D" uid="uid://es1uarb585af" path="res://material_maker/theme/light/checkbox_unchecked.png" id="5_53mdm"] -[ext_resource type="Texture2D" uid="uid://cgk8gew643rn5" path="res://material_maker/theme/light/checkbutton_off.png" id="6_lva1r"] -[ext_resource type="Texture2D" uid="uid://ctqc4hwr06jcn" path="res://material_maker/theme/light/checkbutton_off_disabled.png" id="7_g6q5c"] -[ext_resource type="Texture2D" uid="uid://btdgduwum6udt" path="res://material_maker/theme/light/checkbutton_on.png" id="8_chxlv"] -[ext_resource type="Texture2D" uid="uid://b5spo48w2n735" path="res://material_maker/theme/light/checkbutton_on_disabled.png" id="9_jumwe"] -[ext_resource type="Texture2D" uid="uid://dwx330u4qmbty" path="res://material_maker/theme/light/colorpickerbutton_bg.png" id="10_hrlit"] -[ext_resource type="Texture2D" uid="uid://bmhbike4jtlfs" path="res://material_maker/theme/light/graphedit_minus.png" id="11_qeq32"] -[ext_resource type="Texture2D" uid="uid://bybvmge6fuutt" path="res://material_maker/theme/light/graphedit_more.png" id="12_a2u5t"] -[ext_resource type="Texture2D" uid="uid://cb5a5pybkhgwl" path="res://material_maker/theme/light/graphedit_reset.png" id="13_ueaup"] -[ext_resource type="Texture2D" uid="uid://ddkkmsn0g8pud" path="res://material_maker/theme/light/graphedit_snap.png" id="14_q7j3q"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="15_bgpbs"] -[ext_resource type="Texture2D" uid="uid://bnr2ru7nip2fx" path="res://material_maker/theme/light/graphnode_close.png" id="16_u8rnr"] -[ext_resource type="Texture2D" uid="uid://f7mpt2b350vh" path="res://material_maker/theme/light/graphnode_port.png" id="17_glbhj"] -[ext_resource type="Texture2D" uid="uid://eqf4ery81pl3" path="res://material_maker/theme/light/graphnode_resizer.png" id="18_4fpy0"] -[ext_resource type="Texture2D" uid="uid://udj2r7y4i8hg" path="res://material_maker/theme/light/hslider_grabber.png" id="19_pasdj"] -[ext_resource type="Texture2D" uid="uid://b8fqpa1cbnd0f" path="res://material_maker/theme/light/hslider_grabber_disabled.png" id="20_w1pp4"] -[ext_resource type="Texture2D" uid="uid://cwxwu2twvam2a" path="res://material_maker/theme/light/hslider_grabber_highlight.png" id="21_lqvpc"] -[ext_resource type="Texture2D" uid="uid://cpdwepuvcklms" path="res://material_maker/theme/light/hslider_tick.png" id="22_04wo2"] -[ext_resource type="Texture2D" uid="uid://blxk16haasvv" path="res://material_maker/theme/light/hsplitcontainer_grabber.png" id="23_5xplx"] -[ext_resource type="Texture2D" uid="uid://icdtaus46y1j" path="res://material_maker/theme/light/lineedit_clear.png" id="24_183xd"] -[ext_resource type="Texture2D" uid="uid://c8nvvtqgeffbt" path="res://material_maker/theme/light/optionbutton_arrow.png" id="25_s06bd"] -[ext_resource type="Texture2D" uid="uid://bpnqr7xtqcjih" path="res://material_maker/theme/light/popupmenu_checked.png" id="26_asbxv"] -[ext_resource type="Texture2D" uid="uid://dpsooc5vw0sgv" path="res://material_maker/theme/light/popupmenu_radio_checked.png" id="27_eg3gq"] -[ext_resource type="Texture2D" uid="uid://b5vla6ilvqctf" path="res://material_maker/theme/light/popupmenu_radio_unchecked.png" id="28_vgpxt"] -[ext_resource type="Texture2D" uid="uid://cqlvp516i2nle" path="res://material_maker/theme/light/popupmenu_submenu.png" id="29_chtff"] -[ext_resource type="Texture2D" uid="uid://b65sty0612igq" path="res://material_maker/theme/light/popupmenu_unchecked.png" id="30_cjoor"] -[ext_resource type="Texture2D" uid="uid://bk08nxr8n34uj" path="res://material_maker/theme/light/popupmenu_visibility_hidden.png" id="31_4kpnc"] -[ext_resource type="Texture2D" uid="uid://bf4musephmill" path="res://material_maker/theme/light/popupmenu_visibility_visible.png" id="32_prm38"] -[ext_resource type="Texture2D" uid="uid://7t3wgnfyojbm" path="res://material_maker/theme/light/popupmenu_visibility_xray.png" id="33_ifp8t"] -[ext_resource type="Texture2D" uid="uid://cy80m33tspaey" path="res://material_maker/theme/light/tabs_close.png" id="34_fei01"] -[ext_resource type="Texture2D" uid="uid://dcyko2qerg5a3" path="res://material_maker/theme/light/tabs_decrement.png" id="35_u72sj"] -[ext_resource type="Texture2D" uid="uid://1spe48kjqobv" path="res://material_maker/theme/light/tabs_decrement_highlight.png" id="36_farxq"] -[ext_resource type="Texture2D" uid="uid://hvrx5w8swyn0" path="res://material_maker/theme/light/tabs_increment.png" id="37_a0o4b"] -[ext_resource type="Texture2D" uid="uid://dcv6tqjh4fbmb" path="res://material_maker/theme/light/tabs_increment_highlight.png" id="38_hbb6u"] -[ext_resource type="Texture2D" uid="uid://fql8peb8ej06" path="res://material_maker/theme/light/tabcontainer_decrement.png" id="39_f5mt4"] -[ext_resource type="Texture2D" uid="uid://b0k03vcrkfp8" path="res://material_maker/theme/light/tabcontainer_decrement_highlight.png" id="40_3tgs7"] -[ext_resource type="Texture2D" uid="uid://w8kl00q0k3f6" path="res://material_maker/theme/light/tabcontainer_increment.png" id="41_ifw81"] -[ext_resource type="Texture2D" uid="uid://5bfmrv468m5p" path="res://material_maker/theme/light/tabcontainer_increment_highlight.png" id="42_6urgv"] -[ext_resource type="Texture2D" uid="uid://df4txeqlevst0" path="res://material_maker/theme/light/tabcontainer_menu.png" id="43_vt5la"] -[ext_resource type="Texture2D" uid="uid://bi7pdrlqaixka" path="res://material_maker/theme/light/tabcontainer_menu_highlight.png" id="44_f1gy7"] -[ext_resource type="Texture2D" uid="uid://s6onvcoqa2b" path="res://material_maker/theme/light/textedit_fold.png" id="45_ktrgb"] -[ext_resource type="Texture2D" uid="uid://8ornq11nxdrh" path="res://material_maker/theme/light/textedit_folded.png" id="46_2te6i"] -[ext_resource type="Texture2D" uid="uid://mhktkgaelexe" path="res://material_maker/theme/light/textedit_space.png" id="47_7dd1v"] -[ext_resource type="Texture2D" uid="uid://dj2ckjbe6vwal" path="res://material_maker/theme/light/textedit_tab.png" id="48_h2ew7"] -[ext_resource type="Texture2D" uid="uid://53n8u607u2i6" path="res://material_maker/theme/light/tree_arrow.png" id="49_3bk1m"] -[ext_resource type="Texture2D" uid="uid://c6mx1qg7dmi3c" path="res://material_maker/theme/light/tree_arrow_collapsed.png" id="50_ia01o"] -[ext_resource type="Texture2D" uid="uid://dvici6o14jnks" path="res://material_maker/theme/light/tree_checked.png" id="51_t1tjt"] -[ext_resource type="Texture2D" uid="uid://dl81so0gphsk2" path="res://material_maker/theme/light/tree_select_arrow.png" id="52_n00qu"] -[ext_resource type="Texture2D" uid="uid://bemah233ej4q5" path="res://material_maker/theme/light/tree_unchecked.png" id="53_5fpfk"] -[ext_resource type="Texture2D" uid="uid://cbragtn3yksls" path="res://material_maker/theme/light/tree_updown.png" id="54_58r6r"] -[ext_resource type="Texture2D" uid="uid://jourlkt3abm1" path="res://material_maker/theme/light/vslider_grabber.png" id="55_6oeu3"] -[ext_resource type="Texture2D" uid="uid://dfgva5pkdlq5a" path="res://material_maker/theme/light/vslider_grabber_highlight.png" id="56_n2a33"] -[ext_resource type="Texture2D" uid="uid://dd6fbmgw8m5uo" path="res://material_maker/theme/light/vsplitcontainer_grabber.png" id="57_tgniw"] -[ext_resource type="Texture2D" uid="uid://bhegc6iau74uk" path="res://material_maker/theme/light/windowdialog_close.png" id="58_px3n2"] -[ext_resource type="Texture2D" uid="uid://dnpkpa0bt81gl" path="res://material_maker/theme/light/windowdialog_close_highlight.png" id="59_bruhy"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i60y2"] +[gd_resource type="Theme" load_steps=126 format=3 uid="uid://d12pe6icsioje"] + +[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_ib7yq"] +[ext_resource type="Texture2D" uid="uid://bg66nf03a1wj0" path="res://material_maker/theme/light/checkbox_checked.png" id="2_cx70j"] +[ext_resource type="Texture2D" uid="uid://ctamubqvnfppj" path="res://material_maker/theme/light/checkbox_radio_checked.png" id="3_gmi3y"] +[ext_resource type="Texture2D" uid="uid://8ulk7ii706l4" path="res://material_maker/theme/light/checkbox_radio_unchecked.png" id="4_6qsc0"] +[ext_resource type="Texture2D" uid="uid://es1uarb585af" path="res://material_maker/theme/light/checkbox_unchecked.png" id="5_eo67x"] +[ext_resource type="Texture2D" uid="uid://cgk8gew643rn5" path="res://material_maker/theme/light/checkbutton_off.png" id="6_8ys38"] +[ext_resource type="Texture2D" uid="uid://ctqc4hwr06jcn" path="res://material_maker/theme/light/checkbutton_off_disabled.png" id="7_tcb25"] +[ext_resource type="Texture2D" uid="uid://btdgduwum6udt" path="res://material_maker/theme/light/checkbutton_on.png" id="8_q2sk6"] +[ext_resource type="Texture2D" uid="uid://b5spo48w2n735" path="res://material_maker/theme/light/checkbutton_on_disabled.png" id="9_a1wac"] +[ext_resource type="Texture2D" uid="uid://dwx330u4qmbty" path="res://material_maker/theme/light/colorpickerbutton_bg.png" id="10_6gkhn"] +[ext_resource type="Texture2D" uid="uid://bmhbike4jtlfs" path="res://material_maker/theme/light/graphedit_minus.png" id="11_0r6k3"] +[ext_resource type="Texture2D" uid="uid://bybvmge6fuutt" path="res://material_maker/theme/light/graphedit_more.png" id="12_nmx3c"] +[ext_resource type="Texture2D" uid="uid://cb5a5pybkhgwl" path="res://material_maker/theme/light/graphedit_reset.png" id="13_xcpog"] +[ext_resource type="Texture2D" uid="uid://ddkkmsn0g8pud" path="res://material_maker/theme/light/graphedit_snap.png" id="14_mk11v"] +[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="15_161f8"] +[ext_resource type="Texture2D" uid="uid://bnr2ru7nip2fx" path="res://material_maker/theme/light/graphnode_close.png" id="16_gcafu"] +[ext_resource type="Texture2D" uid="uid://f7mpt2b350vh" path="res://material_maker/theme/light/graphnode_port.png" id="17_gg4s4"] +[ext_resource type="Texture2D" uid="uid://eqf4ery81pl3" path="res://material_maker/theme/light/graphnode_resizer.png" id="18_46n31"] +[ext_resource type="Texture2D" uid="uid://udj2r7y4i8hg" path="res://material_maker/theme/light/hslider_grabber.png" id="19_o8gqg"] +[ext_resource type="Texture2D" uid="uid://b8fqpa1cbnd0f" path="res://material_maker/theme/light/hslider_grabber_disabled.png" id="20_75ysg"] +[ext_resource type="Texture2D" uid="uid://cwxwu2twvam2a" path="res://material_maker/theme/light/hslider_grabber_highlight.png" id="21_b43if"] +[ext_resource type="Texture2D" uid="uid://cpdwepuvcklms" path="res://material_maker/theme/light/hslider_tick.png" id="22_jwyl6"] +[ext_resource type="Texture2D" uid="uid://blxk16haasvv" path="res://material_maker/theme/light/hsplitcontainer_grabber.png" id="23_xtpl7"] +[ext_resource type="Texture2D" uid="uid://icdtaus46y1j" path="res://material_maker/theme/light/lineedit_clear.png" id="24_kkb71"] +[ext_resource type="Texture2D" uid="uid://c8nvvtqgeffbt" path="res://material_maker/theme/light/optionbutton_arrow.png" id="25_caemf"] +[ext_resource type="Texture2D" uid="uid://bpnqr7xtqcjih" path="res://material_maker/theme/light/popupmenu_checked.png" id="26_07tqw"] +[ext_resource type="Texture2D" uid="uid://dpsooc5vw0sgv" path="res://material_maker/theme/light/popupmenu_radio_checked.png" id="27_f4jtt"] +[ext_resource type="Texture2D" uid="uid://b5vla6ilvqctf" path="res://material_maker/theme/light/popupmenu_radio_unchecked.png" id="28_jsr27"] +[ext_resource type="Texture2D" uid="uid://cqlvp516i2nle" path="res://material_maker/theme/light/popupmenu_submenu.png" id="29_furje"] +[ext_resource type="Texture2D" uid="uid://b65sty0612igq" path="res://material_maker/theme/light/popupmenu_unchecked.png" id="30_x7bay"] +[ext_resource type="Texture2D" uid="uid://bk08nxr8n34uj" path="res://material_maker/theme/light/popupmenu_visibility_hidden.png" id="31_0wslq"] +[ext_resource type="Texture2D" uid="uid://bf4musephmill" path="res://material_maker/theme/light/popupmenu_visibility_visible.png" id="32_to8ki"] +[ext_resource type="Texture2D" uid="uid://7t3wgnfyojbm" path="res://material_maker/theme/light/popupmenu_visibility_xray.png" id="33_abgvi"] +[ext_resource type="Texture2D" uid="uid://cy80m33tspaey" path="res://material_maker/theme/light/tabs_close.png" id="34_cfsxk"] +[ext_resource type="Texture2D" uid="uid://dcyko2qerg5a3" path="res://material_maker/theme/light/tabs_decrement.png" id="35_vhl2r"] +[ext_resource type="Texture2D" uid="uid://1spe48kjqobv" path="res://material_maker/theme/light/tabs_decrement_highlight.png" id="36_ov7d1"] +[ext_resource type="Texture2D" uid="uid://hvrx5w8swyn0" path="res://material_maker/theme/light/tabs_increment.png" id="37_l557o"] +[ext_resource type="Texture2D" uid="uid://dcv6tqjh4fbmb" path="res://material_maker/theme/light/tabs_increment_highlight.png" id="38_cle0b"] +[ext_resource type="Texture2D" uid="uid://fql8peb8ej06" path="res://material_maker/theme/light/tabcontainer_decrement.png" id="39_2a8yn"] +[ext_resource type="Texture2D" uid="uid://b0k03vcrkfp8" path="res://material_maker/theme/light/tabcontainer_decrement_highlight.png" id="40_epajp"] +[ext_resource type="Texture2D" uid="uid://w8kl00q0k3f6" path="res://material_maker/theme/light/tabcontainer_increment.png" id="41_pt35w"] +[ext_resource type="Texture2D" uid="uid://5bfmrv468m5p" path="res://material_maker/theme/light/tabcontainer_increment_highlight.png" id="42_wuufc"] +[ext_resource type="Texture2D" uid="uid://df4txeqlevst0" path="res://material_maker/theme/light/tabcontainer_menu.png" id="43_hd70g"] +[ext_resource type="Texture2D" uid="uid://bi7pdrlqaixka" path="res://material_maker/theme/light/tabcontainer_menu_highlight.png" id="44_ch5q2"] +[ext_resource type="Texture2D" uid="uid://s6onvcoqa2b" path="res://material_maker/theme/light/textedit_fold.png" id="45_qb5ch"] +[ext_resource type="Texture2D" uid="uid://8ornq11nxdrh" path="res://material_maker/theme/light/textedit_folded.png" id="46_b06td"] +[ext_resource type="Texture2D" uid="uid://mhktkgaelexe" path="res://material_maker/theme/light/textedit_space.png" id="47_sxk7p"] +[ext_resource type="Texture2D" uid="uid://dj2ckjbe6vwal" path="res://material_maker/theme/light/textedit_tab.png" id="48_m1bo1"] +[ext_resource type="Texture2D" uid="uid://53n8u607u2i6" path="res://material_maker/theme/light/tree_arrow.png" id="49_yvm6g"] +[ext_resource type="Texture2D" uid="uid://c6mx1qg7dmi3c" path="res://material_maker/theme/light/tree_arrow_collapsed.png" id="50_mjhda"] +[ext_resource type="Texture2D" uid="uid://dvici6o14jnks" path="res://material_maker/theme/light/tree_checked.png" id="51_31y7g"] +[ext_resource type="Texture2D" uid="uid://dl81so0gphsk2" path="res://material_maker/theme/light/tree_select_arrow.png" id="52_8ja21"] +[ext_resource type="Texture2D" uid="uid://bemah233ej4q5" path="res://material_maker/theme/light/tree_unchecked.png" id="53_r0wsx"] +[ext_resource type="Texture2D" uid="uid://cbragtn3yksls" path="res://material_maker/theme/light/tree_updown.png" id="54_quo8y"] +[ext_resource type="Texture2D" uid="uid://jourlkt3abm1" path="res://material_maker/theme/light/vslider_grabber.png" id="55_hqc5d"] +[ext_resource type="Texture2D" uid="uid://dfgva5pkdlq5a" path="res://material_maker/theme/light/vslider_grabber_highlight.png" id="56_cly8r"] +[ext_resource type="Texture2D" uid="uid://dd6fbmgw8m5uo" path="res://material_maker/theme/light/vsplitcontainer_grabber.png" id="57_xg75g"] +[ext_resource type="Texture2D" uid="uid://bhegc6iau74uk" path="res://material_maker/theme/light/windowdialog_close.png" id="58_5bx72"] +[ext_resource type="Texture2D" uid="uid://dnpkpa0bt81gl" path="res://material_maker/theme/light/windowdialog_close_highlight.png" id="59_61ndb"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sdmqi"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -73,7 +73,7 @@ border_width_bottom = 1 border_color = Color(0.905882, 0.905882, 0.905882, 1) shadow_color = Color(1, 1, 1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pdkfh"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fqmm5"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -86,7 +86,7 @@ border_width_bottom = 1 border_color = Color(0.905882, 0.905882, 0.905882, 1) shadow_color = Color(1, 1, 1, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2k7ll"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_prrcx"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -96,12 +96,12 @@ draw_center = false border_color = Color(0.906863, 0.906863, 0.906863, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t1n0y"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_enr5n"] bg_color = Color(0.4, 0.4, 0.4, 0) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gnxu8"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ttkv2"] bg_color = Color(0.231373, 0.231373, 0.231373, 1) border_width_left = 2 border_width_top = 2 @@ -114,7 +114,7 @@ corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vdfm5"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xq16f"] bg_color = Color(0.4, 0.4, 0.4, 1) border_width_left = 2 border_width_top = 2 @@ -127,7 +127,7 @@ corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ejcg6"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cb7wh"] bg_color = Color(0.8, 0.8, 0.8, 1) border_width_left = 2 border_width_top = 2 @@ -140,7 +140,7 @@ corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_km56j"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jk66v"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -152,7 +152,7 @@ border_width_bottom = 2 border_color = Color(0.171875, 0.093476, 0, 0.3) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8sin7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6eaeg"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -167,7 +167,7 @@ expand_margin_top = 24.0 shadow_color = Color(1, 1, 1, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rgf3d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vfjpn"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -176,7 +176,7 @@ bg_color = Color(0.906863, 0.906863, 0.906863, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fr03l"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_natgi"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -190,7 +190,7 @@ border_color = Color(0.92549, 0.92549, 0.92549, 1) expand_margin_top = -33.0 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1k2it"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7rd32"] content_margin_left = 2.0 content_margin_top = 4.0 content_margin_right = 2.0 @@ -203,7 +203,7 @@ border_width_bottom = 1 border_color = Color(0.92549, 0.92549, 0.92549, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fbw6c"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_is1ys"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -215,7 +215,7 @@ border_width_right = 1 border_color = Color(0.92549, 0.92549, 0.92549, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f7b5e"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_v5tns"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -228,7 +228,7 @@ border_color = Color(0.906863, 0.906863, 0.906863, 1) expand_margin_bottom = 1.0 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_iqhqp"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pwejl"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -241,7 +241,7 @@ border_color = Color(0.92549, 0.92549, 0.92549, 1) expand_margin_bottom = 1.0 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5bbpu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kyas4"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -255,7 +255,7 @@ border_width_bottom = 1 border_color = Color(0.531863, 0.531863, 0.531863, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mbgws"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3l36u"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -264,7 +264,7 @@ bg_color = Color(0.85098, 0.85098, 0.85098, 0.5) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7tqf7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_spf3y"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -275,25 +275,25 @@ border_width_bottom = 1 border_color = Color(0.171875, 0.093476, 0, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_d3xxu"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yjk8e"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_caasq"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_r6n4g"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_cnpug"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_x7gbf"] content_margin_left = 4.0 content_margin_top = 0.0 content_margin_right = 4.0 content_margin_bottom = 4.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_h4xpt"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xoq3v"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -306,8 +306,8 @@ border_width_bottom = 1 border_color = Color(0.92549, 0.92549, 0.92549, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="FontFile" id="120"] -fallbacks = Array[Font]([ExtResource("15_bgpbs")]) +[sub_resource type="FontFile" id="FontFile_l006w"] +fallbacks = Array[Font]([ExtResource("15_161f8")]) cache/0/16/0/ascent = 0.0 cache/0/16/0/descent = 0.0 cache/0/16/0/underline_position = 0.0 @@ -315,7 +315,7 @@ 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_4endr"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_etepn"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 @@ -326,22 +326,22 @@ corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j7443"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mjpo0"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(1, 1, 1, 0.901961) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_color = Color(0, 0, 0, 0.85098) border_blend = true corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0ax21"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pbm0j"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 @@ -352,7 +352,7 @@ corner_radius_top_left = 6 corner_radius_top_right = 6 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vywnt"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yl2vj"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 @@ -360,17 +360,16 @@ bg_color = Color(0.666667, 0.666667, 0.666667, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_color = Color(0.2, 0.2, 0.2, 1) border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_sas7q"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_df5pn"] color = Color(0, 0, 0, 0.1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6la6k"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ci3s4"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 @@ -379,7 +378,7 @@ bg_color = Color(0.638235, 0.638235, 0.638235, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yoegd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ie5lt"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 @@ -388,7 +387,7 @@ bg_color = Color(0.92549, 0.92549, 0.92549, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ung8a"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wpbjo"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -401,7 +400,7 @@ border_width_bottom = 1 border_color = Color(0.92549, 0.92549, 0.92549, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jgyvu"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5b1he"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -415,7 +414,7 @@ border_width_bottom = 1 border_color = Color(0, 0, 0, 0.2) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_e5s7d"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p1vxt"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -424,7 +423,7 @@ bg_color = Color(0, 0, 0, 0.2) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wsryb"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_v8v2b"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -433,7 +432,7 @@ bg_color = Color(0, 0, 0, 0.2) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1mf33"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ytboo"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -447,7 +446,7 @@ border_color = Color(0.171875, 0.093476, 0, 1) corner_detail = 4 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_61l34"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4qnsg"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -461,7 +460,7 @@ border_color = Color(0.906863, 0.906863, 0.906863, 1) corner_detail = 4 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pul1l"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mt288"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -475,7 +474,7 @@ border_color = Color(0.895686, 0.895686, 0.895686, 1) corner_detail = 4 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gcu04"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uq8x5"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -488,7 +487,7 @@ border_width_bottom = 1 border_color = Color(0.638235, 0.638235, 0.638235, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k13o7"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3vjf1"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -501,7 +500,7 @@ border_width_bottom = 1 border_color = Color(0.171875, 0.093476, 0, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1niib"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8bmll"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -510,7 +509,7 @@ bg_color = Color(0.888235, 0.888235, 0.888235, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p218g"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hfdil"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -524,7 +523,7 @@ border_color = Color(0.638235, 0.638235, 0.638235, 1) shadow_color = Color(1, 1, 1, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vjsyk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mwy70"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -533,20 +532,20 @@ bg_color = Color(0.888235, 0.888235, 0.888235, 1) border_color = Color(0.906863, 0.906863, 0.906863, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_ftsfk"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_ata6r"] color = Color(0, 0, 0, 0.1) grow_begin = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_y0l16"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_oiv6r"] color = Color(0, 0, 0, 0.1) grow_end = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_k465s"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_sdbq4"] color = Color(0, 0, 0, 0.1) grow_begin = 7.0 grow_end = 7.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0d7l4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nryga"] bg_color = Color(0.623529, 0.623529, 0.623529, 1) border_color = Color(0.2, 0.2, 0.2, 1) corner_radius_top_left = 24 @@ -555,7 +554,7 @@ corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hiota"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jh6ta"] bg_color = Color(0.623529, 0.623529, 0.623529, 1) border_width_left = 1 border_width_top = 1 @@ -568,9 +567,46 @@ corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_dk6jd"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_824pd"] + +[sub_resource type="FontFile" id="FontFile_00yus"] +fallbacks = Array[Font]([ExtResource("15_161f8")]) +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_y7jmo"] +content_margin_left = 0.0 +content_margin_top = 0.0 +content_margin_right = 0.0 +content_margin_bottom = 0.0 +bg_color = Color(0.623529, 0.623529, 0.623529, 1) +border_color = Color(0.2, 0.2, 0.2, 1) +corner_detail = 1 +shadow_color = Color(1, 1, 1, 0.6) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_oeokw"] +content_margin_left = 0.0 +content_margin_top = 0.0 +content_margin_right = 0.0 +content_margin_bottom = 0.0 +bg_color = Color(0.623529, 0.623529, 0.623529, 1) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0, 0, 0, 1) +corner_detail = 1 +shadow_color = Color(1, 1, 1, 0.6) + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_u0qfg"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_obq6p"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6262y"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gmeug"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -583,7 +619,7 @@ border_color = Color(0.895686, 0.895686, 0.895686, 1) expand_margin_bottom = 1.0 shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lloli"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hcobl"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -596,7 +632,7 @@ border_width_bottom = 1 border_color = Color(0.92549, 0.92549, 0.92549, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6hjix"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4ty4b"] content_margin_left = 1.0 content_margin_top = 1.0 content_margin_right = 1.0 @@ -610,7 +646,7 @@ border_color = Color(0, 0, 0, 1) shadow_color = Color(1, 1, 1, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k4tmp"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_iqck4"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -619,7 +655,7 @@ bg_color = Color(0.638235, 0.638235, 0.638235, 1) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x4kki"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ekxgx"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -633,11 +669,11 @@ border_width_bottom = 1 border_color = Color(0.638235, 0.638235, 0.638235, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_838fj"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lxy7e"] -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_fpw2c"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_n0o7u"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lx5u2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_elihn"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -646,7 +682,7 @@ bg_color = Color(0, 0, 0, 0.08) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_88phm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_16p2h"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -655,13 +691,13 @@ bg_color = Color(0.92549, 0.92549, 0.92549, 1) border_color = Color(0.85098, 0.85098, 0.85098, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_c07oe"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_rhk7w"] color = Color(0, 0, 0, 0.1) grow_begin = 0.0 grow_end = 0.0 vertical = true -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3wvxv"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wpu0g"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -670,7 +706,7 @@ bg_color = Color(0.638235, 0.638235, 0.638235, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1sfxp"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mt4ul"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -679,7 +715,7 @@ bg_color = Color(0.92549, 0.92549, 0.92549, 1) border_color = Color(0.2, 0.2, 0.2, 1) shadow_color = Color(1, 1, 1, 0.6) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2pt5w"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qgqfk"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -701,12 +737,12 @@ Button/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) Button/colors/font_pressed_color = Color(0.171875, 0.093476, 0, 1) Button/colors/icon_color_hover = Color(-0.15, -0.15, -0.15, 1) Button/colors/icon_color_pressed = Color(0.047656, -0.0425, -0.15, 1) -Button/fonts/font = ExtResource("1_ib1bu") -Button/styles/disabled = SubResource("StyleBoxFlat_i60y2") -Button/styles/focus = SubResource("StyleBoxFlat_pdkfh") -Button/styles/hover = SubResource("StyleBoxFlat_pdkfh") -Button/styles/normal = SubResource("StyleBoxFlat_pdkfh") -Button/styles/pressed = SubResource("StyleBoxFlat_pdkfh") +Button/fonts/font = ExtResource("1_ib7yq") +Button/styles/disabled = SubResource("StyleBoxFlat_sdmqi") +Button/styles/focus = SubResource("StyleBoxFlat_fqmm5") +Button/styles/hover = SubResource("StyleBoxFlat_fqmm5") +Button/styles/normal = SubResource("StyleBoxFlat_fqmm5") +Button/styles/pressed = SubResource("StyleBoxFlat_fqmm5") CheckBox/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) CheckBox/colors/font_disabled_color = Color(0, 0, 0, 0.3) CheckBox/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) @@ -715,16 +751,16 @@ CheckBox/colors/font_pressed_color = Color(0.171875, 0.093476, 0, 1) CheckBox/colors/icon_color_hover = Color(-0.15, -0.15, -0.15, 1) CheckBox/constants/check_vadjust = 0 CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = ExtResource("1_ib1bu") -CheckBox/icons/checked = ExtResource("2_3x2wy") -CheckBox/icons/radio_checked = ExtResource("3_frm0t") -CheckBox/icons/radio_unchecked = ExtResource("4_ll476") -CheckBox/icons/unchecked = ExtResource("5_53mdm") -CheckBox/styles/disabled = SubResource("StyleBoxFlat_2k7ll") -CheckBox/styles/hover = SubResource("StyleBoxFlat_2k7ll") -CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_t1n0y") -CheckBox/styles/normal = SubResource("StyleBoxFlat_2k7ll") -CheckBox/styles/pressed = SubResource("StyleBoxFlat_2k7ll") +CheckBox/fonts/font = ExtResource("1_ib7yq") +CheckBox/icons/checked = ExtResource("2_cx70j") +CheckBox/icons/radio_checked = ExtResource("3_gmi3y") +CheckBox/icons/radio_unchecked = ExtResource("4_6qsc0") +CheckBox/icons/unchecked = ExtResource("5_eo67x") +CheckBox/styles/disabled = SubResource("StyleBoxFlat_prrcx") +CheckBox/styles/hover = SubResource("StyleBoxFlat_prrcx") +CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_enr5n") +CheckBox/styles/normal = SubResource("StyleBoxFlat_prrcx") +CheckBox/styles/pressed = SubResource("StyleBoxFlat_prrcx") CheckButton/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) CheckButton/colors/font_disabled_color = Color(0, 0, 0, 0.3) CheckButton/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) @@ -732,24 +768,24 @@ CheckButton/colors/font_pressed_color = Color(0.171875, 0.093476, 0, 1) CheckButton/colors/icon_color_hover = Color(-0.15, -0.15, -0.15, 1) CheckButton/constants/check_vadjust = 0 CheckButton/constants/hseparation = 4 -CheckButton/icons/off = ExtResource("6_lva1r") -CheckButton/icons/off_disabled = ExtResource("7_g6q5c") -CheckButton/icons/on = ExtResource("8_chxlv") -CheckButton/icons/on_disabled = ExtResource("9_jumwe") -CheckButton/styles/disabled = SubResource("StyleBoxFlat_pdkfh") -CheckButton/styles/hover = SubResource("StyleBoxFlat_pdkfh") -CheckButton/styles/normal = SubResource("StyleBoxFlat_pdkfh") -CheckButton/styles/pressed = SubResource("StyleBoxFlat_pdkfh") +CheckButton/icons/off = ExtResource("6_8ys38") +CheckButton/icons/off_disabled = ExtResource("7_tcb25") +CheckButton/icons/on = ExtResource("8_q2sk6") +CheckButton/icons/on_disabled = ExtResource("9_a1wac") +CheckButton/styles/disabled = SubResource("StyleBoxFlat_fqmm5") +CheckButton/styles/hover = SubResource("StyleBoxFlat_fqmm5") +CheckButton/styles/normal = SubResource("StyleBoxFlat_fqmm5") +CheckButton/styles/pressed = SubResource("StyleBoxFlat_fqmm5") ColorPickerButton/colors/font_color = Color(0, 0, 0, 1) ColorPickerButton/colors/font_disabled_color = Color(0.1, 0.1, 0.1, 0.3) ColorPickerButton/colors/font_hover_color = Color(0, 0, 0, 1) ColorPickerButton/colors/font_pressed_color = Color(0.2, 0.2, 0.2, 1) ColorPickerButton/constants/hseparation = 2 -ColorPickerButton/fonts/font = ExtResource("1_ib1bu") -ColorPickerButton/icons/bg = ExtResource("10_hrlit") -ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_gnxu8") -ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_vdfm5") -ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_ejcg6") +ColorPickerButton/fonts/font = ExtResource("1_ib7yq") +ColorPickerButton/icons/bg = ExtResource("10_6gkhn") +ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_ttkv2") +ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_xq16f") +ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_cb7wh") Editor/colors/accent_color = Color(0.171875, 0.093476, 0, 1) Editor/colors/axis_x_color = Color(0.04, 0.8, 0.68, 1) Editor/colors/axis_y_color = Color(0.47, 0.16, 0.99, 1) @@ -778,24 +814,24 @@ Editor/constants/dark_theme = 1 Editor/constants/inspector_margin = 8 Editor/constants/scale = 1 Editor/constants/thumb_size = 64 -Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_km56j") -EditorAbout/styles/panel = SubResource("StyleBoxFlat_8sin7") -EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_8sin7") -EditorStyles/styles/Background = SubResource("StyleBoxFlat_rgf3d") -EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_fr03l") -EditorStyles/styles/Content = SubResource("StyleBoxFlat_1k2it") -EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_fbw6c") -EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_f7b5e") -EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_iqhqp") -EditorStyles/styles/Focus = SubResource("StyleBoxFlat_5bbpu") -EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_mbgws") -EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_7tqf7") -EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_pdkfh") -EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_d3xxu") -EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_f7b5e") -EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_iqhqp") -EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_caasq") -EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_cnpug") +Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_jk66v") +EditorAbout/styles/panel = SubResource("StyleBoxFlat_6eaeg") +EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_6eaeg") +EditorStyles/styles/Background = SubResource("StyleBoxFlat_vfjpn") +EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_natgi") +EditorStyles/styles/Content = SubResource("StyleBoxFlat_7rd32") +EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_is1ys") +EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_v5tns") +EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_pwejl") +EditorStyles/styles/Focus = SubResource("StyleBoxFlat_kyas4") +EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_3l36u") +EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_spf3y") +EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_fqmm5") +EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_yjk8e") +EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_v5tns") +EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_pwejl") +EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_r6n4g") +EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_x7gbf") GraphEdit/colors/activity = Color(0.171875, 0.093476, 0, 1) GraphEdit/colors/grid_major = Color(0, 0, 0, 0.15) GraphEdit/colors/grid_minor = Color(0, 0, 0, 0.07) @@ -803,11 +839,11 @@ GraphEdit/colors/selection_fill = Color(0.171875, 0.093476, 0, 0.3) GraphEdit/colors/selection_stroke = Color(0.171875, 0.093476, 0, 0.8) GraphEdit/constants/bezier_len_neg = 160 GraphEdit/constants/bezier_len_pos = 80 -GraphEdit/icons/minus = ExtResource("11_qeq32") -GraphEdit/icons/more = ExtResource("12_a2u5t") -GraphEdit/icons/reset = ExtResource("13_ueaup") -GraphEdit/icons/snap = ExtResource("14_q7j3q") -GraphEdit/styles/bg = SubResource("StyleBoxFlat_h4xpt") +GraphEdit/icons/minus = ExtResource("11_0r6k3") +GraphEdit/icons/more = ExtResource("12_nmx3c") +GraphEdit/icons/reset = ExtResource("13_xcpog") +GraphEdit/icons/snap = ExtResource("14_mk11v") +GraphEdit/styles/bg = SubResource("StyleBoxFlat_xoq3v") GraphNode/colors/close_color = Color(0, 0, 0, 0.7) GraphNode/colors/resizer_color = Color(0, 0, 0, 0.7) GraphNode/colors/title_color = Color(0, 0, 0, 1) @@ -818,23 +854,23 @@ GraphNode/constants/port_offset = 10 GraphNode/constants/separation = 1 GraphNode/constants/title_h_offset = -16 GraphNode/constants/title_offset = 20 -GraphNode/fonts/title_font = SubResource("120") -GraphNode/icons/close = ExtResource("16_u8rnr") -GraphNode/icons/port = ExtResource("17_glbhj") -GraphNode/icons/resizer = ExtResource("18_4fpy0") -GraphNode/styles/panel = SubResource("StyleBoxFlat_4endr") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_j7443") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_0ax21") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_vywnt") -HSeparator/styles/separator = SubResource("StyleBoxLine_sas7q") -HSlider/icons/grabber = ExtResource("19_pasdj") -HSlider/icons/grabber_disabled = ExtResource("20_w1pp4") -HSlider/icons/grabber_highlight = ExtResource("21_lqvpc") -HSlider/icons/tick = ExtResource("22_04wo2") -HSlider/styles/grabber_area = SubResource("StyleBoxFlat_6la6k") -HSlider/styles/slider = SubResource("StyleBoxFlat_yoegd") +GraphNode/fonts/title_font = SubResource("FontFile_l006w") +GraphNode/icons/close = ExtResource("16_gcafu") +GraphNode/icons/port = ExtResource("17_gg4s4") +GraphNode/icons/resizer = ExtResource("18_46n31") +GraphNode/styles/panel = SubResource("StyleBoxFlat_etepn") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_mjpo0") +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_pbm0j") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_yl2vj") +HSeparator/styles/separator = SubResource("StyleBoxLine_df5pn") +HSlider/icons/grabber = ExtResource("19_o8gqg") +HSlider/icons/grabber_disabled = ExtResource("20_75ysg") +HSlider/icons/grabber_highlight = ExtResource("21_b43if") +HSlider/icons/tick = ExtResource("22_jwyl6") +HSlider/styles/grabber_area = SubResource("StyleBoxFlat_ci3s4") +HSlider/styles/slider = SubResource("StyleBoxFlat_ie5lt") HSplitContainer/constants/separation = 8 -HSplitContainer/icons/grabber = ExtResource("23_5xplx") +HSplitContainer/icons/grabber = ExtResource("23_xtpl7") ItemList/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) ItemList/colors/font_color_selected = Color(0, 0, 0, 1) ItemList/colors/guide_color = Color(0, 0, 0, 0.05) @@ -842,19 +878,19 @@ ItemList/constants/hseparation = 3 ItemList/constants/icon_margin = 4 ItemList/constants/line_separation = 3 ItemList/constants/vseparation = 3 -ItemList/styles/bg = SubResource("StyleBoxFlat_ung8a") -ItemList/styles/bg_focus = SubResource("StyleBoxFlat_5bbpu") -ItemList/styles/cursor = SubResource("StyleBoxFlat_jgyvu") -ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_jgyvu") -ItemList/styles/selected = SubResource("StyleBoxFlat_e5s7d") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_wsryb") +ItemList/styles/bg = SubResource("StyleBoxFlat_wpbjo") +ItemList/styles/bg_focus = SubResource("StyleBoxFlat_kyas4") +ItemList/styles/cursor = SubResource("StyleBoxFlat_5b1he") +ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_5b1he") +ItemList/styles/selected = SubResource("StyleBoxFlat_p1vxt") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_v8v2b") Label/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) Label/colors/font_color_shadow = Color(1, 1, 1, 0) Label/constants/line_spacing = 3 Label/constants/shadow_as_outline = 0 Label/constants/shadow_offset_x = 1 Label/constants/shadow_offset_y = 1 -Label/styles/normal = SubResource("StyleBoxEmpty_d3xxu") +Label/styles/normal = SubResource("StyleBoxEmpty_yjk8e") LineEdit/colors/clear_button_color = Color(0.212745, 0.212745, 0.212745, 1) LineEdit/colors/clear_button_color_pressed = Color(0.171875, 0.093476, 0, 1) LineEdit/colors/cursor_color = Color(0.212745, 0.212745, 0.212745, 1) @@ -862,24 +898,24 @@ LineEdit/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) LineEdit/colors/font_color_selected = Color(0, 0, 0, 1) LineEdit/colors/read_only = Color(0, 0, 0, 0.3) LineEdit/colors/selection_color = Color(0.171875, 0.093476, 0, 0.4) -LineEdit/fonts/font = ExtResource("1_ib1bu") -LineEdit/icons/clear = ExtResource("24_183xd") -LineEdit/styles/focus = SubResource("StyleBoxFlat_1mf33") -LineEdit/styles/normal = SubResource("StyleBoxFlat_61l34") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_pul1l") +LineEdit/fonts/font = ExtResource("1_ib7yq") +LineEdit/icons/clear = ExtResource("24_kkb71") +LineEdit/styles/focus = SubResource("StyleBoxFlat_ytboo") +LineEdit/styles/normal = SubResource("StyleBoxFlat_4qnsg") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_mt288") LinkButton/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) -LinkButton/styles/focus = SubResource("StyleBoxEmpty_d3xxu") +LinkButton/styles/focus = SubResource("StyleBoxEmpty_yjk8e") MenuButton/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) MenuButton/colors/font_disabled_color = Color(0, 0, 0, 0.3) MenuButton/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) MenuButton/colors/font_pressed_color = Color(0, 0, 0, 1) MenuButton/constants/hseparation = 3 -MenuButton/fonts/font = ExtResource("1_ib1bu") -MenuButton/styles/disabled = SubResource("StyleBoxFlat_pdkfh") -MenuButton/styles/focus = SubResource("StyleBoxFlat_pdkfh") -MenuButton/styles/hover = SubResource("StyleBoxFlat_pdkfh") -MenuButton/styles/normal = SubResource("StyleBoxFlat_pdkfh") -MenuButton/styles/pressed = SubResource("StyleBoxFlat_pdkfh") +MenuButton/fonts/font = ExtResource("1_ib7yq") +MenuButton/styles/disabled = SubResource("StyleBoxFlat_fqmm5") +MenuButton/styles/focus = SubResource("StyleBoxFlat_fqmm5") +MenuButton/styles/hover = SubResource("StyleBoxFlat_fqmm5") +MenuButton/styles/normal = SubResource("StyleBoxFlat_fqmm5") +MenuButton/styles/pressed = SubResource("StyleBoxFlat_fqmm5") OptionButton/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) OptionButton/colors/font_disabled_color = Color(0, 0, 0, 0.3) OptionButton/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) @@ -888,65 +924,99 @@ OptionButton/colors/icon_color_hover = Color(-0.15, -0.15, -0.15, 1) OptionButton/constants/arrow_margin = 4 OptionButton/constants/hseparation = 4 OptionButton/constants/modulate_arrow = 1 -OptionButton/fonts/font = ExtResource("1_ib1bu") -OptionButton/icons/arrow = ExtResource("25_s06bd") -OptionButton/styles/disabled = SubResource("StyleBoxFlat_pul1l") -OptionButton/styles/focus = SubResource("StyleBoxFlat_1mf33") -OptionButton/styles/hover = SubResource("StyleBoxFlat_gcu04") -OptionButton/styles/normal = SubResource("StyleBoxFlat_61l34") -OptionButton/styles/pressed = SubResource("StyleBoxFlat_k13o7") -Panel/styles/panel = SubResource("StyleBoxFlat_1niib") -PanelContainer/styles/panel = SubResource("StyleBoxFlat_pdkfh") -Popup/styles/panel = SubResource("StyleBoxFlat_p218g") +OptionButton/fonts/font = ExtResource("1_ib7yq") +OptionButton/icons/arrow = ExtResource("25_caemf") +OptionButton/styles/disabled = SubResource("StyleBoxFlat_mt288") +OptionButton/styles/focus = SubResource("StyleBoxFlat_ytboo") +OptionButton/styles/hover = SubResource("StyleBoxFlat_uq8x5") +OptionButton/styles/normal = SubResource("StyleBoxFlat_4qnsg") +OptionButton/styles/pressed = SubResource("StyleBoxFlat_3vjf1") +Panel/styles/panel = SubResource("StyleBoxFlat_8bmll") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_fqmm5") +Popup/styles/panel = SubResource("StyleBoxFlat_hfdil") PopupMenu/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) PopupMenu/colors/font_color_accel = Color(0, 0, 0, 0.3) PopupMenu/colors/font_disabled_color = Color(0, 0, 0, 0.3) PopupMenu/colors/font_hover_color = Color(0.127647, 0.127647, 0.127647, 1) PopupMenu/constants/hseparation = 4 PopupMenu/constants/vseparation = 5 -PopupMenu/fonts/font = ExtResource("1_ib1bu") -PopupMenu/icons/checked = ExtResource("26_asbxv") -PopupMenu/icons/radio_checked = ExtResource("27_eg3gq") -PopupMenu/icons/radio_unchecked = ExtResource("28_vgpxt") -PopupMenu/icons/submenu = ExtResource("29_chtff") -PopupMenu/icons/unchecked = ExtResource("30_cjoor") -PopupMenu/icons/visibility_hidden = ExtResource("31_4kpnc") -PopupMenu/icons/visibility_visible = ExtResource("32_prm38") -PopupMenu/icons/visibility_xray = ExtResource("33_ifp8t") -PopupMenu/styles/disabled = SubResource("StyleBoxFlat_pdkfh") -PopupMenu/styles/focus = SubResource("StyleBoxFlat_pdkfh") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_vjsyk") -PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_ftsfk") -PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_y0l16") -PopupMenu/styles/normal = SubResource("StyleBoxFlat_pdkfh") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_p218g") -PopupMenu/styles/pressed = SubResource("StyleBoxFlat_pdkfh") -PopupMenu/styles/separator = SubResource("StyleBoxLine_k465s") -PopupPanel/styles/panel = SubResource("StyleBoxFlat_p218g") +PopupMenu/fonts/font = ExtResource("1_ib7yq") +PopupMenu/icons/checked = ExtResource("26_07tqw") +PopupMenu/icons/radio_checked = ExtResource("27_f4jtt") +PopupMenu/icons/radio_unchecked = ExtResource("28_jsr27") +PopupMenu/icons/submenu = ExtResource("29_furje") +PopupMenu/icons/unchecked = ExtResource("30_x7bay") +PopupMenu/icons/visibility_hidden = ExtResource("31_0wslq") +PopupMenu/icons/visibility_visible = ExtResource("32_to8ki") +PopupMenu/icons/visibility_xray = ExtResource("33_abgvi") +PopupMenu/styles/disabled = SubResource("StyleBoxFlat_fqmm5") +PopupMenu/styles/focus = SubResource("StyleBoxFlat_fqmm5") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_mwy70") +PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_ata6r") +PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_oiv6r") +PopupMenu/styles/normal = SubResource("StyleBoxFlat_fqmm5") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_hfdil") +PopupMenu/styles/pressed = SubResource("StyleBoxFlat_fqmm5") +PopupMenu/styles/separator = SubResource("StyleBoxLine_sdbq4") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_hfdil") ProgressBar/colors/font_color = Color(0.212745, 0.212745, 0.212745, 1) -ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_8sin7") -Reroute/styles/frame = SubResource("StyleBoxFlat_0d7l4") -Reroute/styles/selected_frame = SubResource("StyleBoxFlat_hiota") +ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_6eaeg") +Reroute/colors/close_color = Color(0, 0, 0, 0.7) +Reroute/colors/resizer_color = Color(0, 0, 0, 0.7) +Reroute/colors/title_color = Color(0, 0, 0, 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/fonts/title_font = SubResource("FontFile_l006w") +Reroute/icons/close = ExtResource("16_gcafu") +Reroute/icons/port = ExtResource("17_gg4s4") +Reroute/icons/resizer = ExtResource("18_46n31") +Reroute/styles/panel = SubResource("StyleBoxFlat_nryga") +Reroute/styles/panel_selected = SubResource("StyleBoxFlat_jh6ta") +Reroute/styles/titlebar = SubResource("StyleBoxEmpty_824pd") +Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_824pd") +ReroutePreview/colors/close_color = Color(0, 0, 0, 0.7) +ReroutePreview/colors/resizer_color = Color(0, 0, 0, 0.7) +ReroutePreview/colors/title_color = Color(0, 0, 0, 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("16_gcafu") +ReroutePreview/icons/port = ExtResource("17_gg4s4") +ReroutePreview/icons/resizer = ExtResource("18_46n31") +ReroutePreview/styles/panel = SubResource("StyleBoxFlat_y7jmo") +ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_oeokw") +ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_u0qfg") +ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_u0qfg") RichTextLabel/colors/default_color = Color(0.212745, 0.212745, 0.212745, 1) RichTextLabel/colors/font_color_shadow = Color(1, 1, 1, 0) RichTextLabel/constants/shadow_as_outline = 0 RichTextLabel/constants/shadow_offset_x = 1 RichTextLabel/constants/shadow_offset_y = 1 -RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_dk6jd") -RichTextLabel/styles/normal = SubResource("StyleBoxFlat_h4xpt") +RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_obq6p") +RichTextLabel/styles/normal = SubResource("StyleBoxFlat_xoq3v") TabBar/colors/font_color_bg = Color(0, 0, 0, 0.3) TabBar/colors/font_color_fg = Color(0.212745, 0.212745, 0.212745, 1) TabBar/constants/hseparation = 4 -TabBar/icons/close = ExtResource("34_fei01") -TabBar/icons/decrement = ExtResource("35_u72sj") -TabBar/icons/decrement_highlight = ExtResource("36_farxq") -TabBar/icons/increment = ExtResource("37_a0o4b") -TabBar/icons/increment_highlight = ExtResource("38_hbb6u") -TabBar/styles/button = SubResource("StyleBoxFlat_pdkfh") -TabBar/styles/button_pressed = SubResource("StyleBoxFlat_pdkfh") -TabBar/styles/tab_bg = SubResource("StyleBoxFlat_f7b5e") -TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_6262y") -TabBar/styles/tab_fg = SubResource("StyleBoxFlat_iqhqp") +TabBar/icons/close = ExtResource("34_cfsxk") +TabBar/icons/decrement = ExtResource("35_vhl2r") +TabBar/icons/decrement_highlight = ExtResource("36_ov7d1") +TabBar/icons/increment = ExtResource("37_l557o") +TabBar/icons/increment_highlight = ExtResource("38_cle0b") +TabBar/styles/button = SubResource("StyleBoxFlat_fqmm5") +TabBar/styles/button_pressed = SubResource("StyleBoxFlat_fqmm5") +TabBar/styles/tab_bg = SubResource("StyleBoxFlat_v5tns") +TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_gmeug") +TabBar/styles/tab_fg = SubResource("StyleBoxFlat_pwejl") TabContainer/colors/font_color_bg = Color(0, 0, 0, 0.3) TabContainer/colors/font_color_fg = Color(0.212745, 0.212745, 0.212745, 1) TabContainer/colors/font_disabled_color = Color(0.1, 0.1, 0.1, 0.2) @@ -955,17 +1025,17 @@ TabContainer/constants/label_valign_bg = 2 TabContainer/constants/label_valign_fg = 0 TabContainer/constants/side_margin = 0 TabContainer/constants/top_margin = 24 -TabContainer/fonts/font = ExtResource("1_ib1bu") -TabContainer/icons/decrement = ExtResource("39_f5mt4") -TabContainer/icons/decrement_highlight = ExtResource("40_3tgs7") -TabContainer/icons/increment = ExtResource("41_ifw81") -TabContainer/icons/increment_highlight = ExtResource("42_6urgv") -TabContainer/icons/menu = ExtResource("43_vt5la") -TabContainer/icons/menu_highlight = ExtResource("44_f1gy7") -TabContainer/styles/panel = SubResource("StyleBoxFlat_lloli") -TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_f7b5e") -TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_6262y") -TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_iqhqp") +TabContainer/fonts/font = ExtResource("1_ib7yq") +TabContainer/icons/decrement = ExtResource("39_2a8yn") +TabContainer/icons/decrement_highlight = ExtResource("40_epajp") +TabContainer/icons/increment = ExtResource("41_pt35w") +TabContainer/icons/increment_highlight = ExtResource("42_wuufc") +TabContainer/icons/menu = ExtResource("43_hd70g") +TabContainer/icons/menu_highlight = ExtResource("44_ch5q2") +TabContainer/styles/panel = SubResource("StyleBoxFlat_hcobl") +TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_v5tns") +TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_gmeug") +TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_pwejl") TextEdit/colors/background_color = Color(1, 1, 1, 0) TextEdit/colors/brace_mismatch_color = Color(0, 0.8, 0.8, 1) TextEdit/colors/breakpoint_color = Color(0.2, 0.2, 0.6, 0.2) @@ -993,16 +1063,16 @@ TextEdit/constants/completion_lines = 7 TextEdit/constants/completion_max_width = 50 TextEdit/constants/completion_scroll_width = 3 TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = ExtResource("1_ib1bu") -TextEdit/icons/fold = ExtResource("45_ktrgb") -TextEdit/icons/folded = ExtResource("46_2te6i") -TextEdit/icons/space = ExtResource("47_7dd1v") -TextEdit/icons/tab = ExtResource("48_h2ew7") -TextEdit/styles/focus = SubResource("StyleBoxFlat_gcu04") -TextEdit/styles/normal = SubResource("StyleBoxFlat_61l34") -TextEdit/styles/read_only = SubResource("StyleBoxFlat_pul1l") +TextEdit/fonts/font = ExtResource("1_ib7yq") +TextEdit/icons/fold = ExtResource("45_qb5ch") +TextEdit/icons/folded = ExtResource("46_b06td") +TextEdit/icons/space = ExtResource("47_sxk7p") +TextEdit/icons/tab = ExtResource("48_m1bo1") +TextEdit/styles/focus = SubResource("StyleBoxFlat_uq8x5") +TextEdit/styles/normal = SubResource("StyleBoxFlat_4qnsg") +TextEdit/styles/read_only = SubResource("StyleBoxFlat_mt288") TooltipLabel/colors/font_color = Color(1, 1, 1, 1) -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_6hjix") +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_4ty4b") Tree/colors/cursor_color = Color(1, 1, 1, 1) Tree/colors/custom_button_font_highlight = Color(0.127647, 0.127647, 0.127647, 1) Tree/colors/drop_position_color = Color(0.171875, 0.093476, 0, 1) @@ -1021,41 +1091,41 @@ Tree/constants/item_margin = 12 Tree/constants/scroll_border = 40 Tree/constants/scroll_speed = 12 Tree/constants/vseparation = 4 -Tree/fonts/font = ExtResource("1_ib1bu") -Tree/fonts/title_button_font = ExtResource("1_ib1bu") -Tree/icons/arrow = ExtResource("49_3bk1m") -Tree/icons/arrow_collapsed = ExtResource("50_ia01o") -Tree/icons/checked = ExtResource("51_t1tjt") -Tree/icons/select_arrow = ExtResource("52_n00qu") -Tree/icons/unchecked = ExtResource("53_5fpfk") -Tree/icons/updown = ExtResource("54_58r6r") -Tree/styles/bg = SubResource("StyleBoxFlat_h4xpt") -Tree/styles/bg_focus = SubResource("StyleBoxFlat_5bbpu") -Tree/styles/button_pressed = SubResource("StyleBoxFlat_k4tmp") -Tree/styles/cursor = SubResource("StyleBoxFlat_x4kki") -Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_x4kki") -Tree/styles/custom_button = SubResource("StyleBoxEmpty_838fj") -Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_61l34") -Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_fpw2c") -Tree/styles/hover = SubResource("StyleBoxFlat_lx5u2") -Tree/styles/selected = SubResource("StyleBoxFlat_e5s7d") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_wsryb") -Tree/styles/title_button_hover = SubResource("StyleBoxFlat_88phm") -Tree/styles/title_button_normal = SubResource("StyleBoxFlat_88phm") -Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_88phm") -VSeparator/styles/separator = SubResource("StyleBoxLine_c07oe") -VSlider/icons/grabber = ExtResource("55_6oeu3") -VSlider/icons/grabber_highlight = ExtResource("56_n2a33") -VSlider/styles/grabber_area = SubResource("StyleBoxFlat_3wvxv") -VSlider/styles/slider = SubResource("StyleBoxFlat_1sfxp") +Tree/fonts/font = ExtResource("1_ib7yq") +Tree/fonts/title_button_font = ExtResource("1_ib7yq") +Tree/icons/arrow = ExtResource("49_yvm6g") +Tree/icons/arrow_collapsed = ExtResource("50_mjhda") +Tree/icons/checked = ExtResource("51_31y7g") +Tree/icons/select_arrow = ExtResource("52_8ja21") +Tree/icons/unchecked = ExtResource("53_r0wsx") +Tree/icons/updown = ExtResource("54_quo8y") +Tree/styles/bg = SubResource("StyleBoxFlat_xoq3v") +Tree/styles/bg_focus = SubResource("StyleBoxFlat_kyas4") +Tree/styles/button_pressed = SubResource("StyleBoxFlat_iqck4") +Tree/styles/cursor = SubResource("StyleBoxFlat_ekxgx") +Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_ekxgx") +Tree/styles/custom_button = SubResource("StyleBoxEmpty_lxy7e") +Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_4qnsg") +Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_n0o7u") +Tree/styles/hover = SubResource("StyleBoxFlat_elihn") +Tree/styles/selected = SubResource("StyleBoxFlat_p1vxt") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_v8v2b") +Tree/styles/title_button_hover = SubResource("StyleBoxFlat_16p2h") +Tree/styles/title_button_normal = SubResource("StyleBoxFlat_16p2h") +Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_16p2h") +VSeparator/styles/separator = SubResource("StyleBoxLine_rhk7w") +VSlider/icons/grabber = ExtResource("55_hqc5d") +VSlider/icons/grabber_highlight = ExtResource("56_cly8r") +VSlider/styles/grabber_area = SubResource("StyleBoxFlat_wpu0g") +VSlider/styles/slider = SubResource("StyleBoxFlat_mt4ul") VSplitContainer/constants/separation = 8 -VSplitContainer/icons/grabber = ExtResource("57_tgniw") +VSplitContainer/icons/grabber = ExtResource("57_xg75g") Window/colors/title_color = Color(0.212745, 0.212745, 0.212745, 1) Window/constants/close_h_ofs = 22 Window/constants/close_v_ofs = 20 Window/constants/scaleborder_size = 4 Window/constants/title_height = 24 -Window/fonts/title_font = ExtResource("1_ib1bu") -Window/icons/close = ExtResource("58_px3n2") -Window/icons/close_highlight = ExtResource("59_bruhy") -Window/styles/panel = SubResource("StyleBoxFlat_2pt5w") +Window/fonts/title_font = ExtResource("1_ib7yq") +Window/icons/close = ExtResource("58_5bx72") +Window/icons/close_highlight = ExtResource("59_61ndb") +Window/styles/panel = SubResource("StyleBoxFlat_qgqfk") diff --git a/material_maker/theme/mangosteen.tres b/material_maker/theme/mangosteen.tres index 2f61e8713..81334ffa7 100644 --- a/material_maker/theme/mangosteen.tres +++ b/material_maker/theme/mangosteen.tres @@ -1,63 +1,63 @@ -[gd_resource type="Theme" load_steps=121 format=3 uid="uid://c8isn6xerh652"] - -[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_x8fyl"] -[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_shyeq"] -[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_q8g8x"] -[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_6gxwd"] -[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_n2ikr"] -[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_kqaje"] -[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_ueniu"] -[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_dqcs1"] -[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_c1xok"] -[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_i8uxc"] -[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_hp416"] -[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_bo81h"] -[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_yyh83"] -[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_djh8o"] -[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_l3nv6"] -[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_64yuj"] -[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_ulwbw"] -[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_71r07"] -[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_6u2w0"] -[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_rmd1m"] -[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_fotyp"] -[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_ps1or"] -[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_lhbsa"] -[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_liw8h"] -[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_dy0dj"] -[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_rs524"] -[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_gl55r"] -[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_1v5ho"] -[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_knjhj"] -[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_37tvf"] -[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_51spv"] -[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_es2nx"] -[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_twyge"] -[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_vtifx"] -[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_tacn1"] -[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_eaegh"] -[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_hpa3r"] -[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_0ayxp"] -[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_eese2"] -[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_u0kc2"] -[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_d4237"] -[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_557wd"] -[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_sc5jp"] -[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_26akg"] -[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_qgdwe"] -[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_l5civ"] -[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_hmq3a"] -[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_2ig43"] -[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_5dfst"] -[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_1lwfn"] -[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_jtpdc"] -[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_foh8i"] -[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_eb8vw"] -[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_qt3v7"] -[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_u53hq"] -[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_v0yfn"] - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cdtgr"] +[gd_resource type="Theme" load_steps=124 format=3 uid="uid://c8isn6xerh652"] + +[ext_resource type="FontFile" path="res://material_maker/theme/font.tres" id="1_xi23j"] +[ext_resource type="Texture2D" uid="uid://dns037k5om74b" path="res://material_maker/theme/dark/checkbox_checked.png" id="2_1tmpj"] +[ext_resource type="Texture2D" uid="uid://d0jps0u7dybnk" path="res://material_maker/theme/dark/checkbox_radio_checked.png" id="3_fgb41"] +[ext_resource type="Texture2D" uid="uid://dgy8i2xtjcbox" path="res://material_maker/theme/dark/checkbox_radio_unchecked.png" id="4_6dxbb"] +[ext_resource type="Texture2D" uid="uid://culamc7salbfk" path="res://material_maker/theme/dark/checkbox_unchecked.png" id="5_5lcw1"] +[ext_resource type="Texture2D" uid="uid://ur8ohwwy2se0" path="res://material_maker/theme/dark/checkbutton_off.png" id="6_17ut4"] +[ext_resource type="Texture2D" uid="uid://dl5mee2sawhvx" path="res://material_maker/theme/dark/checkbutton_off_disabled.png" id="7_4h26g"] +[ext_resource type="Texture2D" uid="uid://c2svuhr0tv8rx" path="res://material_maker/theme/dark/checkbutton_on.png" id="8_k1h2l"] +[ext_resource type="Texture2D" uid="uid://duiw7jcnsryie" path="res://material_maker/theme/dark/checkbutton_on_disabled.png" id="9_6gnyv"] +[ext_resource type="Texture2D" uid="uid://buutlpewvsl5f" path="res://material_maker/theme/dark/graphedit_minus.png" id="10_ljrgb"] +[ext_resource type="Texture2D" uid="uid://bapp055p506nn" path="res://material_maker/theme/dark/graphedit_more.png" id="11_cdu02"] +[ext_resource type="Texture2D" uid="uid://kv15jiypeh63" path="res://material_maker/theme/dark/graphedit_reset.png" id="12_d5kl1"] +[ext_resource type="Texture2D" uid="uid://bnvjru4lab3id" path="res://material_maker/theme/dark/graphedit_snap.png" id="13_67s2k"] +[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="14_jr4hi"] +[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="15_066we"] +[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="16_ts3je"] +[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="17_nvja2"] +[ext_resource type="Texture2D" uid="uid://dfk266xc6jids" path="res://material_maker/theme/dark/hslider_grabber.png" id="18_yhrg6"] +[ext_resource type="Texture2D" uid="uid://cm304a332uihs" path="res://material_maker/theme/dark/hslider_grabber_highlight.png" id="19_cwu0w"] +[ext_resource type="Texture2D" uid="uid://cs75am60dbelx" path="res://material_maker/theme/dark/hsplitcontainer_grabber.png" id="20_v7nsb"] +[ext_resource type="Texture2D" uid="uid://bj6kf4c01lyo5" path="res://material_maker/theme/dark/lineedit_clear.png" id="21_xsy42"] +[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="22_sp6hw"] +[ext_resource type="Texture2D" uid="uid://c1s6ailuulpow" path="res://material_maker/theme/dark/popupmenu_checked.png" id="23_f26te"] +[ext_resource type="Texture2D" uid="uid://dxtyj47g22k51" path="res://material_maker/theme/dark/popupmenu_radio_checked.png" id="24_uqw2h"] +[ext_resource type="Texture2D" uid="uid://p5p3mlddsxcx" path="res://material_maker/theme/dark/popupmenu_radio_unchecked.png" id="25_77wmg"] +[ext_resource type="Texture2D" uid="uid://dw0lvt1ip8ifp" path="res://material_maker/theme/dark/popupmenu_submenu.png" id="26_uni8x"] +[ext_resource type="Texture2D" uid="uid://dtssuiytl2gld" path="res://material_maker/theme/dark/popupmenu_unchecked.png" id="27_nrcok"] +[ext_resource type="Texture2D" uid="uid://bti8tyothy6ml" path="res://material_maker/theme/dark/popupmenu_visibility_hidden.png" id="28_71qou"] +[ext_resource type="Texture2D" uid="uid://tfi3spyumjxt" path="res://material_maker/theme/dark/popupmenu_visibility_visible.png" id="29_4iymp"] +[ext_resource type="Texture2D" uid="uid://rs23woqfg04o" path="res://material_maker/theme/dark/popupmenu_visibility_xray.png" id="30_3sfyv"] +[ext_resource type="Texture2D" uid="uid://b7bi2a08gmv5q" path="res://material_maker/theme/dark/tabs_close.png" id="31_f54xb"] +[ext_resource type="Texture2D" uid="uid://8gjqxc8ixpnc" path="res://material_maker/theme/dark/tabs_decrement.png" id="32_8qaug"] +[ext_resource type="Texture2D" uid="uid://cgooh67mtaxni" path="res://material_maker/theme/dark/tabs_decrement_highlight.png" id="33_t7cex"] +[ext_resource type="Texture2D" uid="uid://tetgna5qjvkf" path="res://material_maker/theme/dark/tabs_increment.png" id="34_1jh87"] +[ext_resource type="Texture2D" uid="uid://vjf2xjlnd5dh" path="res://material_maker/theme/dark/tabs_increment_highlight.png" id="35_jaam2"] +[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="36_jy6bc"] +[ext_resource type="Texture2D" uid="uid://cbl5e611kmr3d" path="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png" id="37_pt5x6"] +[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="38_kjlky"] +[ext_resource type="Texture2D" uid="uid://2dheuv4p0d2d" path="res://material_maker/theme/dark/tabcontainer_increment_highlight.png" id="39_akdnh"] +[ext_resource type="Texture2D" uid="uid://doy077313i2s4" path="res://material_maker/theme/dark/tabcontainer_menu.png" id="40_vvutb"] +[ext_resource type="Texture2D" uid="uid://dr4fg84bcewo8" path="res://material_maker/theme/dark/tabcontainer_menu_highlight.png" id="41_0wob1"] +[ext_resource type="Texture2D" uid="uid://d2ohx44rm5pe1" path="res://material_maker/theme/dark/textedit_fold.png" id="42_k4l3p"] +[ext_resource type="Texture2D" uid="uid://bcfxo36mapscy" path="res://material_maker/theme/dark/textedit_folded.png" id="43_2h2ry"] +[ext_resource type="Texture2D" uid="uid://cbnl1ajr2avjc" path="res://material_maker/theme/dark/textedit_space.png" id="44_rvqmd"] +[ext_resource type="Texture2D" uid="uid://cwkw8bx2ggvsk" path="res://material_maker/theme/dark/textedit_tab.png" id="45_ux2xe"] +[ext_resource type="Texture2D" uid="uid://mxw58hi0ogr4" path="res://material_maker/theme/dark/tree_arrow.png" id="46_5wkbp"] +[ext_resource type="Texture2D" uid="uid://b81bpjjvfcnpi" path="res://material_maker/theme/dark/tree_arrow_collapsed.png" id="47_mf25i"] +[ext_resource type="Texture2D" uid="uid://b7tagrhn21clx" path="res://material_maker/theme/dark/tree_checked.png" id="48_vli6t"] +[ext_resource type="Texture2D" uid="uid://ivbhbdcskgkn" path="res://material_maker/theme/dark/tree_select_arrow.png" id="49_f556g"] +[ext_resource type="Texture2D" uid="uid://bkbk6pedev6wx" path="res://material_maker/theme/dark/tree_unchecked.png" id="50_orn7a"] +[ext_resource type="Texture2D" uid="uid://bs3x24topb8fl" path="res://material_maker/theme/dark/tree_updown.png" id="51_wsdye"] +[ext_resource type="Texture2D" uid="uid://r18qvh06tu10" path="res://material_maker/theme/dark/vslider_grabber.png" id="52_3fja1"] +[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="53_pvufu"] +[ext_resource type="Texture2D" uid="uid://cywmxr2m8h7mr" path="res://material_maker/theme/dark/vsplitcontainer_grabber.png" id="54_wdqxb"] +[ext_resource type="Texture2D" uid="uid://lgj5c6kuqwit" path="res://material_maker/theme/dark/windowdialog_close.png" id="55_nr2wh"] +[ext_resource type="Texture2D" uid="uid://xi5ma1i85pdd" path="res://material_maker/theme/dark/windowdialog_close_highlight.png" id="56_aj27d"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_woic6"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -69,7 +69,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yi6uc"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uwh7r"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -81,7 +81,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2ubn5"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_itp74"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -89,10 +89,10 @@ content_margin_bottom = 4.0 bg_color = Color(0.294118, 0.188235, 0.251765, 1) draw_center = false -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bh6gf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j3ctc"] bg_color = Color(0.292969, 0.189012, 0.251386, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i86g2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_oxakc"] bg_color = Color(1, 0.365, 0.746, 1) border_width_left = 2 border_width_top = 2 @@ -103,7 +103,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pv6xy"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qf1v0"] bg_color = Color(1, 0.365, 0.746, 1) border_width_left = 2 border_width_top = 2 @@ -114,7 +114,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sgpu4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w30um"] bg_color = Color(1, 0.365, 0.746, 1) border_width_left = 2 border_width_top = 2 @@ -125,7 +125,7 @@ corner_radius_top_right = 2 corner_radius_bottom_right = 2 corner_radius_bottom_left = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u05fc"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cuess"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 @@ -136,7 +136,7 @@ border_width_right = 2 border_width_bottom = 2 border_color = Color(1, 1, 1, 0.9) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i7wkh"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rcxnh"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -151,14 +151,14 @@ expand_margin_top = 24.0 shadow_color = Color(1, 0.42, 0.768, 0.2) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fhgux"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4auko"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 content_margin_bottom = 4.0 bg_color = Color(0.19375, 0.125, 0.16625, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3wbsq"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8jul8"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -171,7 +171,7 @@ border_width_bottom = 1 border_color = Color(0.155, 0.1, 0.133, 1) expand_margin_top = -33.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_akjuh"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ocm03"] content_margin_left = 2.0 content_margin_top = 4.0 content_margin_right = 2.0 @@ -183,7 +183,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yi8g4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dkhx6"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -194,7 +194,7 @@ border_width_top = 1 border_width_right = 1 border_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fwoi1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u10qt"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -206,7 +206,7 @@ border_width_right = 1 border_color = Color(0.19375, 0.125, 0.16625, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jgv5j"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8ep0g"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -218,7 +218,7 @@ border_width_right = 1 border_color = Color(0.155, 0.1, 0.133, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w2gs4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fotq5"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -231,7 +231,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.56875, 0.5, 0.54125, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mg4pf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6lacx"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -239,7 +239,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.31, 0.2, 0.266, 0.5) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqcd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pok0e"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -249,25 +249,25 @@ draw_center = false border_width_bottom = 1 border_color = Color(0.91, 0.41, 0.71, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_dqmvx"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_urbbl"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xfwdn"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_idp4b"] content_margin_left = 0.0 content_margin_top = 0.0 content_margin_right = 0.0 content_margin_bottom = 0.0 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_8px31"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_k818v"] content_margin_left = 4.0 content_margin_top = 0.0 content_margin_right = 4.0 content_margin_bottom = 4.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cqn3f"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gnlcm"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -280,7 +280,7 @@ border_width_bottom = 1 border_color = Color(0.155, 0.1, 0.133, 1) [sub_resource type="FontFile" id="120"] -fallbacks = Array[Font]([ExtResource("14_djh8o")]) +fallbacks = Array[Font]([ExtResource("14_jr4hi")]) cache/0/16/0/ascent = 0.0 cache/0/16/0/descent = 0.0 cache/0/16/0/underline_position = 0.0 @@ -288,35 +288,20 @@ 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_jqjqg"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.4, 0.76, 1) -shadow_color = Color(1, 0.4, 0.76, 0.1) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hhx5g"] -bg_color = Color(0, 0, 0, 0) +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l53rb"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(1, 0.365, 0.746, 1) draw_center = false -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 = 10 -corner_radius_top_right = 10 -corner_radius_bottom_right = 10 -corner_radius_bottom_left = 10 +border_width_left = 2 +border_width_top = 2 +border_width_right = 2 +border_width_bottom = 2 +corner_detail = 1 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mj21a"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_er6fa"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 @@ -326,76 +311,59 @@ border_color = Color(0.376471, 0.376471, 0.376471, 0.701961) corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_td3mm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jpjet"] content_margin_left = 28.0 content_margin_top = 4.0 content_margin_right = 28.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.9) -border_width_left = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(0.376471, 0.376471, 0.376471, 0.901961) +border_width_left = 2 +border_width_right = 2 +border_width_bottom = 2 border_blend = true corner_radius_bottom_right = 6 corner_radius_bottom_left = 6 shadow_color = Color(0, 0, 0, 0.3) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_up2mq"] -content_margin_left = 28.0 -content_margin_top = 24.0 -content_margin_right = 28.0 -content_margin_bottom = 5.0 -bg_color = Color(0, 0, 0, 0.9) -draw_center = false -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 -border_color = Color(1, 0.42, 0.768, 1) -shadow_color = Color(1, 0.42, 0.768, 0.2) -shadow_size = 8 - -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bito3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qswwj"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(1, 0.365, 0.746, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l3f8c"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j8x6n"] content_margin_left = 9.0 content_margin_top = 1.0 content_margin_bottom = 1.0 -bg_color = Color(1, 0.365, 0.746, 1) +bg_color = Color(0.365, 0.365, 0.365, 1) border_width_left = 2 border_width_top = 2 border_width_right = 2 -border_width_bottom = 2 border_blend = true corner_radius_top_left = 6 corner_radius_top_right = 6 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_nsko2"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_5pdy4"] color = Color(1, 1, 1, 0.1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1ojyl"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kospb"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.4825, 0.4, 0.4495, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rnjdv"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r7est"] content_margin_left = 0.0 content_margin_top = 2.0 content_margin_right = 0.0 content_margin_bottom = 2.0 bg_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lgsa2"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mesjh"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -407,7 +375,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wa1qd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3lkn5"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -420,7 +388,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(1, 1, 1, 0.2) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqwm"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_txack"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -428,7 +396,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m1cq4"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wl02w"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -436,7 +404,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.2) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ambvk"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_eukmf"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -448,7 +416,7 @@ border_width_right = 2 border_width_bottom = 2 corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_063hg"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ywaco"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -461,7 +429,7 @@ border_width_bottom = 2 border_color = Color(0.19375, 0.125, 0.16625, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k3in1"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4xl1u"] content_margin_left = 6.0 content_margin_top = 0.0 content_margin_right = 6.0 @@ -474,7 +442,7 @@ border_width_bottom = 2 border_color = Color(0.217, 0.14, 0.1862, 1) corner_detail = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dfyij"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2narj"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -486,7 +454,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4825, 0.4, 0.4495, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vhcea"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_78cyb"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -498,14 +466,14 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.91, 0.41, 0.71, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dkhar"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xlmig"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 content_margin_bottom = 4.0 bg_color = Color(0.2325, 0.15, 0.1995, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2r2de"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_brerj"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -519,7 +487,7 @@ border_color = Color(0.4825, 0.4, 0.4495, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_eruku"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_g06vh"] content_margin_left = 6.0 content_margin_top = 4.0 content_margin_right = 6.0 @@ -527,27 +495,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.2325, 0.15, 0.1995, 1) border_color = Color(0.19375, 0.125, 0.16625, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_4lbud"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_jy6i4"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_icoip"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_35vx5"] color = Color(1, 1, 1, 0.1) grow_end = 7.0 -[sub_resource type="StyleBoxLine" id="StyleBoxLine_lb5kj"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_s1q36"] color = Color(1, 1, 1, 0.1) grow_begin = 7.0 grow_end = 7.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1awgd"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inyij"] 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_stfxf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p1mx6"] bg_color = Color(0.376471, 0.376471, 0.376471, 1) border_width_left = 1 border_width_top = 1 @@ -559,9 +527,43 @@ corner_radius_top_right = 24 corner_radius_bottom_right = 24 corner_radius_bottom_left = 24 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_katmw"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_774j2"] + +[sub_resource type="FontFile" id="FontFile_00yus"] +fallbacks = Array[Font]([ExtResource("14_jr4hi")]) +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_5r3ww"] +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_mpdb0"] +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_ggpqs"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_2jh0j"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m7jr3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_643u6"] content_margin_left = 10.0 content_margin_top = 5.0 content_margin_right = 10.0 @@ -573,7 +575,7 @@ border_width_right = 1 border_color = Color(0.217, 0.14, 0.1862, 1) expand_margin_bottom = 1.0 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wbapf"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_am57c"] content_margin_left = 5.0 content_margin_top = 5.0 content_margin_right = 5.0 @@ -585,7 +587,7 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_olk2n"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_43amd"] content_margin_left = 1.0 content_margin_top = 1.0 content_margin_right = 1.0 @@ -599,7 +601,7 @@ border_color = Color(1, 1, 1, 1) shadow_color = Color(0, 0, 0, 0.3) shadow_size = 4 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2s00n"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fxe0i"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -607,7 +609,7 @@ content_margin_bottom = 4.0 bg_color = Color(0.4825, 0.4, 0.4495, 1) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xldw3"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_o1jxv"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -620,11 +622,11 @@ border_width_right = 1 border_width_bottom = 1 border_color = Color(0.4825, 0.4, 0.4495, 1) -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_v1map"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_kjvsa"] -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_usuqd"] +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_wiy28"] -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_c0i6x"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a15jb"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -632,7 +634,7 @@ content_margin_bottom = 4.0 bg_color = Color(1, 1, 1, 0.08) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mq3ba"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s3rj4"] content_margin_left = 4.0 content_margin_top = 4.0 content_margin_right = 4.0 @@ -640,27 +642,27 @@ content_margin_bottom = 4.0 bg_color = Color(0.155, 0.1, 0.133, 1) border_color = Color(0.31, 0.2, 0.266, 1) -[sub_resource type="StyleBoxLine" id="StyleBoxLine_n6inl"] +[sub_resource type="StyleBoxLine" id="StyleBoxLine_nk7l6"] color = Color(1, 1, 1, 0.1) grow_begin = 0.0 grow_end = 0.0 vertical = true -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dhgid"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kroc4"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.4825, 0.4, 0.4495, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_bhv5g"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_63xxj"] content_margin_left = 2.0 content_margin_top = 0.0 content_margin_right = 2.0 content_margin_bottom = 0.0 bg_color = Color(0.155, 0.1, 0.133, 1) -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0hvmy"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gq40t"] content_margin_left = 8.0 content_margin_top = 8.0 content_margin_right = 8.0 @@ -683,12 +685,12 @@ Button/colors/font_color_pressed = Color(0.91, 0.41, 0.71, 1) Button/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) Button/colors/icon_color_pressed = Color(1.0465, 0.4715, 0.8165, 1) Button/constants/hseparation = 2 -Button/fonts/font = ExtResource("1_x8fyl") -Button/styles/disabled = SubResource("StyleBoxFlat_cdtgr") -Button/styles/focus = SubResource("StyleBoxFlat_yi6uc") -Button/styles/hover = SubResource("StyleBoxFlat_yi6uc") -Button/styles/normal = SubResource("StyleBoxFlat_yi6uc") -Button/styles/pressed = SubResource("StyleBoxFlat_yi6uc") +Button/fonts/font = ExtResource("1_xi23j") +Button/styles/disabled = SubResource("StyleBoxFlat_woic6") +Button/styles/focus = SubResource("StyleBoxFlat_uwh7r") +Button/styles/hover = SubResource("StyleBoxFlat_uwh7r") +Button/styles/normal = SubResource("StyleBoxFlat_uwh7r") +Button/styles/pressed = SubResource("StyleBoxFlat_uwh7r") CheckBox/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) CheckBox/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckBox/colors/font_color_hover = Color(0.8965, 0.88, 0.8899, 1) @@ -697,16 +699,16 @@ CheckBox/colors/font_color_pressed = Color(0.91, 0.41, 0.71, 1) CheckBox/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckBox/constants/check_vadjust = 0 CheckBox/constants/hseparation = 4 -CheckBox/fonts/font = ExtResource("1_x8fyl") -CheckBox/icons/checked = ExtResource("2_shyeq") -CheckBox/icons/radio_checked = ExtResource("3_q8g8x") -CheckBox/icons/radio_unchecked = ExtResource("4_6gxwd") -CheckBox/icons/unchecked = ExtResource("5_n2ikr") -CheckBox/styles/disabled = SubResource("StyleBoxFlat_2ubn5") -CheckBox/styles/hover = SubResource("StyleBoxFlat_2ubn5") -CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_bh6gf") -CheckBox/styles/normal = SubResource("StyleBoxFlat_2ubn5") -CheckBox/styles/pressed = SubResource("StyleBoxFlat_2ubn5") +CheckBox/fonts/font = ExtResource("1_xi23j") +CheckBox/icons/checked = ExtResource("2_1tmpj") +CheckBox/icons/radio_checked = ExtResource("3_fgb41") +CheckBox/icons/radio_unchecked = ExtResource("4_6dxbb") +CheckBox/icons/unchecked = ExtResource("5_5lcw1") +CheckBox/styles/disabled = SubResource("StyleBoxFlat_itp74") +CheckBox/styles/hover = SubResource("StyleBoxFlat_itp74") +CheckBox/styles/hover_pressed = SubResource("StyleBoxFlat_j3ctc") +CheckBox/styles/normal = SubResource("StyleBoxFlat_itp74") +CheckBox/styles/pressed = SubResource("StyleBoxFlat_itp74") CheckButton/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) CheckButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) CheckButton/colors/font_color_hover = Color(0.8965, 0.88, 0.8899, 1) @@ -714,19 +716,19 @@ CheckButton/colors/font_color_pressed = Color(0.91, 0.41, 0.71, 1) CheckButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) CheckButton/constants/check_vadjust = 0 CheckButton/constants/hseparation = 4 -CheckButton/icons/off = ExtResource("6_kqaje") -CheckButton/icons/off_disabled = ExtResource("7_ueniu") -CheckButton/icons/on = ExtResource("8_dqcs1") -CheckButton/icons/on_disabled = ExtResource("9_c1xok") -CheckButton/styles/disabled = SubResource("StyleBoxFlat_yi6uc") -CheckButton/styles/hover = SubResource("StyleBoxFlat_yi6uc") -CheckButton/styles/normal = SubResource("StyleBoxFlat_yi6uc") -CheckButton/styles/pressed = SubResource("StyleBoxFlat_yi6uc") +CheckButton/icons/off = ExtResource("6_17ut4") +CheckButton/icons/off_disabled = ExtResource("7_4h26g") +CheckButton/icons/on = ExtResource("8_k1h2l") +CheckButton/icons/on_disabled = ExtResource("9_6gnyv") +CheckButton/styles/disabled = SubResource("StyleBoxFlat_uwh7r") +CheckButton/styles/hover = SubResource("StyleBoxFlat_uwh7r") +CheckButton/styles/normal = SubResource("StyleBoxFlat_uwh7r") +CheckButton/styles/pressed = SubResource("StyleBoxFlat_uwh7r") ColorPickerButton/constants/hseparation = 0 -ColorPickerButton/fonts/font = ExtResource("1_x8fyl") -ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_i86g2") -ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_pv6xy") -ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_sgpu4") +ColorPickerButton/fonts/font = ExtResource("1_xi23j") +ColorPickerButton/styles/hover = SubResource("StyleBoxFlat_oxakc") +ColorPickerButton/styles/normal = SubResource("StyleBoxFlat_qf1v0") +ColorPickerButton/styles/pressed = SubResource("StyleBoxFlat_w30um") Editor/colors/accent_color = Color(0.91, 0.41, 0.71, 1) Editor/colors/axis_x_color = Color(0.96, 0.2, 0.656, 1) Editor/colors/axis_y_color = Color(0.84, 0.01, 0.508, 1) @@ -755,24 +757,24 @@ Editor/constants/dark_theme = 1 Editor/constants/inspector_margin = 8 Editor/constants/scale = 1 Editor/constants/thumb_size = 64 -Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_u05fc") -EditorAbout/styles/panel = SubResource("StyleBoxFlat_i7wkh") -EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_i7wkh") -EditorStyles/styles/Background = SubResource("StyleBoxFlat_fhgux") -EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_3wbsq") -EditorStyles/styles/Content = SubResource("StyleBoxFlat_akjuh") -EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_yi8g4") -EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_fwoi1") -EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_jgv5j") -EditorStyles/styles/Focus = SubResource("StyleBoxFlat_w2gs4") -EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_mg4pf") -EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_imqcd") -EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_yi6uc") -EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_dqmvx") -EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_fwoi1") -EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_jgv5j") -EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_xfwdn") -EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_8px31") +Editor/styles/sub_inspector_bg = SubResource("StyleBoxFlat_cuess") +EditorAbout/styles/panel = SubResource("StyleBoxFlat_rcxnh") +EditorSettingsDialog/styles/panel = SubResource("StyleBoxFlat_rcxnh") +EditorStyles/styles/Background = SubResource("StyleBoxFlat_4auko") +EditorStyles/styles/BottomPanelDebuggerOverride = SubResource("StyleBoxFlat_8jul8") +EditorStyles/styles/Content = SubResource("StyleBoxFlat_ocm03") +EditorStyles/styles/DebuggerPanel = SubResource("StyleBoxFlat_dkhx6") +EditorStyles/styles/DebuggerTabBG = SubResource("StyleBoxFlat_u10qt") +EditorStyles/styles/DebuggerTabFG = SubResource("StyleBoxFlat_8ep0g") +EditorStyles/styles/Focus = SubResource("StyleBoxFlat_fotq5") +EditorStyles/styles/Information3dViewport = SubResource("StyleBoxFlat_6lacx") +EditorStyles/styles/MenuHover = SubResource("StyleBoxFlat_pok0e") +EditorStyles/styles/MenuPanel = SubResource("StyleBoxFlat_uwh7r") +EditorStyles/styles/PlayButtonPanel = SubResource("StyleBoxEmpty_urbbl") +EditorStyles/styles/SceneTabBG = SubResource("StyleBoxFlat_u10qt") +EditorStyles/styles/SceneTabFG = SubResource("StyleBoxFlat_8ep0g") +EditorStyles/styles/ScriptEditor = SubResource("StyleBoxEmpty_idp4b") +EditorStyles/styles/ScriptEditorPanel = SubResource("StyleBoxEmpty_k818v") GraphEdit/colors/activity = Color(0.91, 0.41, 0.71, 1) GraphEdit/colors/grid_major = Color(1, 1, 1, 0.15) GraphEdit/colors/grid_minor = Color(1, 1, 1, 0.07) @@ -780,11 +782,11 @@ GraphEdit/colors/selection_fill = Color(0.91, 0.41, 0.71, 0.3) GraphEdit/colors/selection_stroke = Color(0.91, 0.41, 0.71, 0.8) GraphEdit/constants/bezier_len_neg = 160 GraphEdit/constants/bezier_len_pos = 80 -GraphEdit/icons/minus = ExtResource("10_i8uxc") -GraphEdit/icons/more = ExtResource("11_hp416") -GraphEdit/icons/reset = ExtResource("12_bo81h") -GraphEdit/icons/snap = ExtResource("13_yyh83") -GraphEdit/styles/bg = SubResource("StyleBoxFlat_cqn3f") +GraphEdit/icons/minus = ExtResource("10_ljrgb") +GraphEdit/icons/more = ExtResource("11_cdu02") +GraphEdit/icons/reset = ExtResource("12_d5kl1") +GraphEdit/icons/snap = ExtResource("13_67s2k") +GraphEdit/styles/bg = SubResource("StyleBoxFlat_gnlcm") GraphNode/colors/close_color = Color(1, 1, 1, 0.7) GraphNode/colors/resizer_color = Color(1, 1, 1, 0.7) GraphNode/colors/title_color = Color(1, 1, 1, 1) @@ -796,23 +798,23 @@ GraphNode/constants/separation = 1 GraphNode/constants/title_h_offset = -16 GraphNode/constants/title_offset = 20 GraphNode/fonts/title_font = SubResource("120") -GraphNode/icons/close = ExtResource("15_l3nv6") -GraphNode/icons/port = ExtResource("16_64yuj") -GraphNode/icons/resizer = ExtResource("17_ulwbw") -GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_jqjqg") -GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_hhx5g") -GraphNode/styles/panel = SubResource("StyleBoxFlat_mj21a") -GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_td3mm") -GraphNode/styles/position = SubResource("StyleBoxFlat_up2mq") -GraphNode/styles/titlebar = SubResource("StyleBoxFlat_bito3") -GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_l3f8c") -HSeparator/styles/separator = SubResource("StyleBoxLine_nsko2") -HSlider/icons/grabber = ExtResource("18_71r07") -HSlider/icons/grabber_highlight = ExtResource("19_6u2w0") -HSlider/styles/grabber_area = SubResource("StyleBoxFlat_1ojyl") -HSlider/styles/slider = SubResource("StyleBoxFlat_rnjdv") +GraphNode/icons/close = ExtResource("15_066we") +GraphNode/icons/port = ExtResource("16_ts3je") +GraphNode/icons/resizer = ExtResource("17_nvja2") +GraphNode/styles/breakpoint = SubResource("StyleBoxFlat_l53rb") +GraphNode/styles/node_highlight = SubResource("StyleBoxFlat_l53rb") +GraphNode/styles/panel = SubResource("StyleBoxFlat_er6fa") +GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_jpjet") +GraphNode/styles/position = SubResource("StyleBoxFlat_l53rb") +GraphNode/styles/titlebar = SubResource("StyleBoxFlat_qswwj") +GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_j8x6n") +HSeparator/styles/separator = SubResource("StyleBoxLine_5pdy4") +HSlider/icons/grabber = ExtResource("18_yhrg6") +HSlider/icons/grabber_highlight = ExtResource("19_cwu0w") +HSlider/styles/grabber_area = SubResource("StyleBoxFlat_kospb") +HSlider/styles/slider = SubResource("StyleBoxFlat_r7est") HSplitContainer/constants/separation = 8 -HSplitContainer/icons/grabber = ExtResource("20_rmd1m") +HSplitContainer/icons/grabber = ExtResource("20_v7nsb") ItemList/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) ItemList/colors/font_color_selected = Color(1, 1, 1, 1) ItemList/colors/guide_color = Color(1, 1, 1, 0.05) @@ -820,19 +822,19 @@ ItemList/constants/hseparation = 0 ItemList/constants/icon_margin = 4 ItemList/constants/line_separation = 0 ItemList/constants/vseparation = 0 -ItemList/styles/bg = SubResource("StyleBoxFlat_lgsa2") -ItemList/styles/bg_focus = SubResource("StyleBoxFlat_w2gs4") -ItemList/styles/cursor = SubResource("StyleBoxFlat_wa1qd") -ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_wa1qd") -ItemList/styles/selected = SubResource("StyleBoxFlat_imqwm") -ItemList/styles/selected_focus = SubResource("StyleBoxFlat_m1cq4") +ItemList/styles/bg = SubResource("StyleBoxFlat_mesjh") +ItemList/styles/bg_focus = SubResource("StyleBoxFlat_fotq5") +ItemList/styles/cursor = SubResource("StyleBoxFlat_3lkn5") +ItemList/styles/cursor_unfocused = SubResource("StyleBoxFlat_3lkn5") +ItemList/styles/selected = SubResource("StyleBoxFlat_txack") +ItemList/styles/selected_focus = SubResource("StyleBoxFlat_wl02w") Label/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) Label/colors/font_color_shadow = Color(0, 0, 0, 0) Label/constants/line_spacing = 0 Label/constants/shadow_as_outline = 0 Label/constants/shadow_offset_x = 1 Label/constants/shadow_offset_y = 1 -Label/styles/normal = SubResource("StyleBoxEmpty_dqmvx") +Label/styles/normal = SubResource("StyleBoxEmpty_urbbl") LineEdit/colors/clear_button_color = Color(0.8275, 0.8, 0.8165, 1) LineEdit/colors/clear_button_color_pressed = Color(0.91, 0.41, 0.71, 1) LineEdit/colors/cursor_color = Color(0.8275, 0.8, 0.8165, 1) @@ -841,24 +843,24 @@ LineEdit/colors/font_color_selected = Color(1, 1, 1, 1) LineEdit/colors/read_only = Color(1, 1, 1, 0.3) LineEdit/colors/selection_color = Color(0.91, 0.41, 0.71, 0.4) LineEdit/constants/minimum_spaces = 12 -LineEdit/fonts/font = ExtResource("1_x8fyl") -LineEdit/icons/clear = ExtResource("21_fotyp") -LineEdit/styles/focus = SubResource("StyleBoxFlat_ambvk") -LineEdit/styles/normal = SubResource("StyleBoxFlat_063hg") -LineEdit/styles/read_only = SubResource("StyleBoxFlat_k3in1") +LineEdit/fonts/font = ExtResource("1_xi23j") +LineEdit/icons/clear = ExtResource("21_xsy42") +LineEdit/styles/focus = SubResource("StyleBoxFlat_eukmf") +LineEdit/styles/normal = SubResource("StyleBoxFlat_ywaco") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_4xl1u") LinkButton/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) -LinkButton/styles/focus = SubResource("StyleBoxEmpty_dqmvx") +LinkButton/styles/focus = SubResource("StyleBoxEmpty_urbbl") MenuButton/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) MenuButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) MenuButton/colors/font_color_hover = Color(0.8965, 0.88, 0.8899, 1) MenuButton/colors/font_color_pressed = Color(1, 1, 1, 1) MenuButton/constants/hseparation = 0 -MenuButton/fonts/font = ExtResource("1_x8fyl") -MenuButton/styles/disabled = SubResource("StyleBoxFlat_yi6uc") -MenuButton/styles/focus = SubResource("StyleBoxFlat_yi6uc") -MenuButton/styles/hover = SubResource("StyleBoxFlat_yi6uc") -MenuButton/styles/normal = SubResource("StyleBoxFlat_yi6uc") -MenuButton/styles/pressed = SubResource("StyleBoxFlat_yi6uc") +MenuButton/fonts/font = ExtResource("1_xi23j") +MenuButton/styles/disabled = SubResource("StyleBoxFlat_uwh7r") +MenuButton/styles/focus = SubResource("StyleBoxFlat_uwh7r") +MenuButton/styles/hover = SubResource("StyleBoxFlat_uwh7r") +MenuButton/styles/normal = SubResource("StyleBoxFlat_uwh7r") +MenuButton/styles/pressed = SubResource("StyleBoxFlat_uwh7r") OptionButton/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) OptionButton/colors/font_color_disabled = Color(1, 1, 1, 0.3) OptionButton/colors/font_color_hover = Color(0.8965, 0.88, 0.8899, 1) @@ -867,65 +869,99 @@ OptionButton/colors/icon_color_hover = Color(1.15, 1.15, 1.15, 1) OptionButton/constants/arrow_margin = 4 OptionButton/constants/hseparation = 4 OptionButton/constants/modulate_arrow = 1 -OptionButton/fonts/font = ExtResource("1_x8fyl") -OptionButton/icons/arrow = ExtResource("22_ps1or") -OptionButton/styles/disabled = SubResource("StyleBoxFlat_k3in1") -OptionButton/styles/focus = SubResource("StyleBoxFlat_ambvk") -OptionButton/styles/hover = SubResource("StyleBoxFlat_dfyij") -OptionButton/styles/normal = SubResource("StyleBoxFlat_063hg") -OptionButton/styles/pressed = SubResource("StyleBoxFlat_vhcea") -Panel/styles/panel = SubResource("StyleBoxFlat_dkhar") -PanelContainer/styles/panel = SubResource("StyleBoxFlat_yi6uc") -Popup/styles/panel = SubResource("StyleBoxFlat_2r2de") +OptionButton/fonts/font = ExtResource("1_xi23j") +OptionButton/icons/arrow = ExtResource("22_sp6hw") +OptionButton/styles/disabled = SubResource("StyleBoxFlat_4xl1u") +OptionButton/styles/focus = SubResource("StyleBoxFlat_eukmf") +OptionButton/styles/hover = SubResource("StyleBoxFlat_2narj") +OptionButton/styles/normal = SubResource("StyleBoxFlat_ywaco") +OptionButton/styles/pressed = SubResource("StyleBoxFlat_78cyb") +Panel/styles/panel = SubResource("StyleBoxFlat_xlmig") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_uwh7r") +Popup/styles/panel = SubResource("StyleBoxFlat_brerj") PopupMenu/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) PopupMenu/colors/font_color_accel = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_disabled = Color(1, 1, 1, 0.3) PopupMenu/colors/font_color_hover = Color(0.8965, 0.88, 0.8899, 1) PopupMenu/constants/hseparation = 4 PopupMenu/constants/vseparation = 5 -PopupMenu/fonts/font = ExtResource("1_x8fyl") -PopupMenu/icons/checked = ExtResource("23_lhbsa") -PopupMenu/icons/radio_checked = ExtResource("24_liw8h") -PopupMenu/icons/radio_unchecked = ExtResource("25_dy0dj") -PopupMenu/icons/submenu = ExtResource("26_rs524") -PopupMenu/icons/unchecked = ExtResource("27_gl55r") -PopupMenu/icons/visibility_hidden = ExtResource("28_1v5ho") -PopupMenu/icons/visibility_visible = ExtResource("29_knjhj") -PopupMenu/icons/visibility_xray = ExtResource("30_37tvf") -PopupMenu/styles/disabled = SubResource("StyleBoxFlat_yi6uc") -PopupMenu/styles/focus = SubResource("StyleBoxFlat_yi6uc") -PopupMenu/styles/hover = SubResource("StyleBoxFlat_eruku") -PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_4lbud") -PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_icoip") -PopupMenu/styles/normal = SubResource("StyleBoxFlat_yi6uc") -PopupMenu/styles/panel = SubResource("StyleBoxFlat_2r2de") -PopupMenu/styles/pressed = SubResource("StyleBoxFlat_yi6uc") -PopupMenu/styles/separator = SubResource("StyleBoxLine_lb5kj") -PopupPanel/styles/panel = SubResource("StyleBoxFlat_2r2de") +PopupMenu/fonts/font = ExtResource("1_xi23j") +PopupMenu/icons/checked = ExtResource("23_f26te") +PopupMenu/icons/radio_checked = ExtResource("24_uqw2h") +PopupMenu/icons/radio_unchecked = ExtResource("25_77wmg") +PopupMenu/icons/submenu = ExtResource("26_uni8x") +PopupMenu/icons/unchecked = ExtResource("27_nrcok") +PopupMenu/icons/visibility_hidden = ExtResource("28_71qou") +PopupMenu/icons/visibility_visible = ExtResource("29_4iymp") +PopupMenu/icons/visibility_xray = ExtResource("30_3sfyv") +PopupMenu/styles/disabled = SubResource("StyleBoxFlat_uwh7r") +PopupMenu/styles/focus = SubResource("StyleBoxFlat_uwh7r") +PopupMenu/styles/hover = SubResource("StyleBoxFlat_g06vh") +PopupMenu/styles/labeled_separator_left = SubResource("StyleBoxLine_jy6i4") +PopupMenu/styles/labeled_separator_right = SubResource("StyleBoxLine_35vx5") +PopupMenu/styles/normal = SubResource("StyleBoxFlat_uwh7r") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_brerj") +PopupMenu/styles/pressed = SubResource("StyleBoxFlat_uwh7r") +PopupMenu/styles/separator = SubResource("StyleBoxLine_s1q36") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_brerj") ProgressBar/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) -ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_i7wkh") -Reroute/styles/frame = SubResource("StyleBoxFlat_1awgd") -Reroute/styles/selected_frame = SubResource("StyleBoxFlat_stfxf") +ProjectSettingsEditor/styles/panel = SubResource("StyleBoxFlat_rcxnh") +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/fonts/title_font = SubResource("120") +Reroute/icons/close = ExtResource("15_066we") +Reroute/icons/port = ExtResource("16_ts3je") +Reroute/icons/resizer = ExtResource("17_nvja2") +Reroute/styles/panel = SubResource("StyleBoxFlat_inyij") +Reroute/styles/panel_selected = SubResource("StyleBoxFlat_p1mx6") +Reroute/styles/titlebar = SubResource("StyleBoxEmpty_774j2") +Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_774j2") +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("15_066we") +ReroutePreview/icons/port = ExtResource("16_ts3je") +ReroutePreview/icons/resizer = ExtResource("17_nvja2") +ReroutePreview/styles/panel = SubResource("StyleBoxFlat_5r3ww") +ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_mpdb0") +ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_ggpqs") +ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_ggpqs") RichTextLabel/colors/default_color = Color(0.8275, 0.8, 0.8165, 1) RichTextLabel/colors/font_color_shadow = Color(0, 0, 0, 0) RichTextLabel/constants/shadow_as_outline = 0 RichTextLabel/constants/shadow_offset_x = 1 RichTextLabel/constants/shadow_offset_y = 1 -RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_katmw") -RichTextLabel/styles/normal = SubResource("StyleBoxFlat_cqn3f") +RichTextLabel/styles/focus = SubResource("StyleBoxEmpty_2jh0j") +RichTextLabel/styles/normal = SubResource("StyleBoxFlat_gnlcm") TabBar/colors/font_color_bg = Color(1, 1, 1, 0.3) TabBar/colors/font_color_fg = Color(0.8275, 0.8, 0.8165, 1) TabBar/constants/hseparation = 4 -TabBar/icons/close = ExtResource("31_51spv") -TabBar/icons/decrement = ExtResource("32_es2nx") -TabBar/icons/decrement_highlight = ExtResource("33_twyge") -TabBar/icons/increment = ExtResource("34_vtifx") -TabBar/icons/increment_highlight = ExtResource("35_tacn1") -TabBar/styles/button = SubResource("StyleBoxFlat_yi6uc") -TabBar/styles/button_pressed = SubResource("StyleBoxFlat_yi6uc") -TabBar/styles/tab_bg = SubResource("StyleBoxFlat_fwoi1") -TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_m7jr3") -TabBar/styles/tab_fg = SubResource("StyleBoxFlat_jgv5j") +TabBar/icons/close = ExtResource("31_f54xb") +TabBar/icons/decrement = ExtResource("32_8qaug") +TabBar/icons/decrement_highlight = ExtResource("33_t7cex") +TabBar/icons/increment = ExtResource("34_1jh87") +TabBar/icons/increment_highlight = ExtResource("35_jaam2") +TabBar/styles/button = SubResource("StyleBoxFlat_uwh7r") +TabBar/styles/button_pressed = SubResource("StyleBoxFlat_uwh7r") +TabBar/styles/tab_bg = SubResource("StyleBoxFlat_u10qt") +TabBar/styles/tab_disabled = SubResource("StyleBoxFlat_643u6") +TabBar/styles/tab_fg = SubResource("StyleBoxFlat_8ep0g") TabContainer/colors/font_color_bg = Color(1, 1, 1, 0.3) TabContainer/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) TabContainer/colors/font_color_fg = Color(0.8275, 0.8, 0.8165, 1) @@ -934,17 +970,17 @@ TabContainer/constants/label_valign_bg = 0 TabContainer/constants/label_valign_fg = 0 TabContainer/constants/side_margin = 0 TabContainer/constants/top_margin = 24 -TabContainer/fonts/font = ExtResource("1_x8fyl") -TabContainer/icons/decrement = ExtResource("36_eaegh") -TabContainer/icons/decrement_highlight = ExtResource("37_hpa3r") -TabContainer/icons/increment = ExtResource("38_0ayxp") -TabContainer/icons/increment_highlight = ExtResource("39_eese2") -TabContainer/icons/menu = ExtResource("40_u0kc2") -TabContainer/icons/menu_highlight = ExtResource("41_d4237") -TabContainer/styles/panel = SubResource("StyleBoxFlat_wbapf") -TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_fwoi1") -TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_m7jr3") -TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_jgv5j") +TabContainer/fonts/font = ExtResource("1_xi23j") +TabContainer/icons/decrement = ExtResource("36_jy6bc") +TabContainer/icons/decrement_highlight = ExtResource("37_pt5x6") +TabContainer/icons/increment = ExtResource("38_kjlky") +TabContainer/icons/increment_highlight = ExtResource("39_akdnh") +TabContainer/icons/menu = ExtResource("40_vvutb") +TabContainer/icons/menu_highlight = ExtResource("41_0wob1") +TabContainer/styles/panel = SubResource("StyleBoxFlat_am57c") +TabContainer/styles/tab_bg = SubResource("StyleBoxFlat_u10qt") +TabContainer/styles/tab_disabled = SubResource("StyleBoxFlat_643u6") +TabContainer/styles/tab_fg = SubResource("StyleBoxFlat_8ep0g") TextEdit/colors/caret_color = Color(0.8275, 0.8, 0.8165, 1) TextEdit/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) TextEdit/colors/selection_color = Color(0.91, 0.41, 0.71, 0.4) @@ -952,16 +988,16 @@ TextEdit/constants/completion_lines = 0 TextEdit/constants/completion_max_width = 0 TextEdit/constants/completion_scroll_width = 0 TextEdit/constants/line_spacing = 4 -TextEdit/fonts/font = ExtResource("1_x8fyl") -TextEdit/icons/fold = ExtResource("42_557wd") -TextEdit/icons/folded = ExtResource("43_sc5jp") -TextEdit/icons/space = ExtResource("44_26akg") -TextEdit/icons/tab = ExtResource("45_qgdwe") -TextEdit/styles/focus = SubResource("StyleBoxFlat_dfyij") -TextEdit/styles/normal = SubResource("StyleBoxFlat_063hg") -TextEdit/styles/read_only = SubResource("StyleBoxFlat_k3in1") +TextEdit/fonts/font = ExtResource("1_xi23j") +TextEdit/icons/fold = ExtResource("42_k4l3p") +TextEdit/icons/folded = ExtResource("43_2h2ry") +TextEdit/icons/space = ExtResource("44_rvqmd") +TextEdit/icons/tab = ExtResource("45_ux2xe") +TextEdit/styles/focus = SubResource("StyleBoxFlat_2narj") +TextEdit/styles/normal = SubResource("StyleBoxFlat_ywaco") +TextEdit/styles/read_only = SubResource("StyleBoxFlat_4xl1u") TooltipLabel/colors/font_color = Color(0, 0, 0, 1) -TooltipPanel/styles/panel = SubResource("StyleBoxFlat_olk2n") +TooltipPanel/styles/panel = SubResource("StyleBoxFlat_43amd") Tree/colors/custom_button_font_highlight = Color(0.8965, 0.88, 0.8899, 1) Tree/colors/drop_position_color = Color(0.91, 0.41, 0.71, 1) Tree/colors/font_color = Color(0.8275, 0.8, 0.8165, 1) @@ -978,41 +1014,41 @@ Tree/constants/item_margin = 12 Tree/constants/scroll_border = 40 Tree/constants/scroll_speed = 12 Tree/constants/vseparation = 4 -Tree/fonts/font = ExtResource("1_x8fyl") -Tree/fonts/title_button_font = ExtResource("1_x8fyl") -Tree/icons/arrow = ExtResource("46_l5civ") -Tree/icons/arrow_collapsed = ExtResource("47_hmq3a") -Tree/icons/checked = ExtResource("48_2ig43") -Tree/icons/select_arrow = ExtResource("49_5dfst") -Tree/icons/unchecked = ExtResource("50_1lwfn") -Tree/icons/updown = ExtResource("51_jtpdc") -Tree/styles/bg = SubResource("StyleBoxFlat_cqn3f") -Tree/styles/bg_focus = SubResource("StyleBoxFlat_w2gs4") -Tree/styles/button_pressed = SubResource("StyleBoxFlat_2s00n") -Tree/styles/cursor = SubResource("StyleBoxFlat_xldw3") -Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_xldw3") -Tree/styles/custom_button = SubResource("StyleBoxEmpty_v1map") -Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_063hg") -Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_usuqd") -Tree/styles/hover = SubResource("StyleBoxFlat_c0i6x") -Tree/styles/selected = SubResource("StyleBoxFlat_imqwm") -Tree/styles/selected_focus = SubResource("StyleBoxFlat_m1cq4") -Tree/styles/title_button_hover = SubResource("StyleBoxFlat_mq3ba") -Tree/styles/title_button_normal = SubResource("StyleBoxFlat_mq3ba") -Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_mq3ba") -VSeparator/styles/separator = SubResource("StyleBoxLine_n6inl") -VSlider/icons/grabber = ExtResource("52_foh8i") -VSlider/icons/grabber_highlight = ExtResource("53_eb8vw") -VSlider/styles/grabber_area = SubResource("StyleBoxFlat_dhgid") -VSlider/styles/slider = SubResource("StyleBoxFlat_bhv5g") +Tree/fonts/font = ExtResource("1_xi23j") +Tree/fonts/title_button_font = ExtResource("1_xi23j") +Tree/icons/arrow = ExtResource("46_5wkbp") +Tree/icons/arrow_collapsed = ExtResource("47_mf25i") +Tree/icons/checked = ExtResource("48_vli6t") +Tree/icons/select_arrow = ExtResource("49_f556g") +Tree/icons/unchecked = ExtResource("50_orn7a") +Tree/icons/updown = ExtResource("51_wsdye") +Tree/styles/bg = SubResource("StyleBoxFlat_gnlcm") +Tree/styles/bg_focus = SubResource("StyleBoxFlat_fotq5") +Tree/styles/button_pressed = SubResource("StyleBoxFlat_fxe0i") +Tree/styles/cursor = SubResource("StyleBoxFlat_o1jxv") +Tree/styles/cursor_unfocused = SubResource("StyleBoxFlat_o1jxv") +Tree/styles/custom_button = SubResource("StyleBoxEmpty_kjvsa") +Tree/styles/custom_button_hover = SubResource("StyleBoxFlat_ywaco") +Tree/styles/custom_button_pressed = SubResource("StyleBoxEmpty_wiy28") +Tree/styles/hover = SubResource("StyleBoxFlat_a15jb") +Tree/styles/selected = SubResource("StyleBoxFlat_txack") +Tree/styles/selected_focus = SubResource("StyleBoxFlat_wl02w") +Tree/styles/title_button_hover = SubResource("StyleBoxFlat_s3rj4") +Tree/styles/title_button_normal = SubResource("StyleBoxFlat_s3rj4") +Tree/styles/title_button_pressed = SubResource("StyleBoxFlat_s3rj4") +VSeparator/styles/separator = SubResource("StyleBoxLine_nk7l6") +VSlider/icons/grabber = ExtResource("52_3fja1") +VSlider/icons/grabber_highlight = ExtResource("53_pvufu") +VSlider/styles/grabber_area = SubResource("StyleBoxFlat_kroc4") +VSlider/styles/slider = SubResource("StyleBoxFlat_63xxj") VSplitContainer/constants/separation = 8 -VSplitContainer/icons/grabber = ExtResource("54_qt3v7") +VSplitContainer/icons/grabber = ExtResource("54_wdqxb") Window/colors/title_color = Color(0.8275, 0.8, 0.8165, 1) Window/constants/close_h_ofs = 22 Window/constants/close_v_ofs = 20 Window/constants/scaleborder_size = 4 Window/constants/title_height = 24 -Window/fonts/title_font = ExtResource("1_x8fyl") -Window/icons/close = ExtResource("55_u53hq") -Window/icons/close_highlight = ExtResource("56_v0yfn") -Window/styles/panel = SubResource("StyleBoxFlat_0hvmy") +Window/fonts/title_font = ExtResource("1_xi23j") +Window/icons/close = ExtResource("55_nr2wh") +Window/icons/close_highlight = ExtResource("56_aj27d") +Window/styles/panel = SubResource("StyleBoxFlat_gq40t") diff --git a/material_maker/theme/test_graphedit.tscn b/material_maker/theme/test_graphedit.tscn new file mode 100644 index 000000000..b554ca13c --- /dev/null +++ b/material_maker/theme/test_graphedit.tscn @@ -0,0 +1,45 @@ +[gd_scene load_steps=2 format=3 uid="uid://dfmqik1lo46ib"] + +[ext_resource type="PackedScene" uid="uid://dj08rlr43tqxj" path="res://material_maker/nodes/reroute/reroute.tscn" id="1_cuyn0"] + +[node name="TestGraphedit" type="GraphEdit"] +custom_minimum_size = Vector2(600, 300) +anchors_preset = -1 +anchor_right = 599.0 +anchor_bottom = 300.0 +offset_left = -1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 + +[node name="GraphNode" type="GraphNode" parent="."] +layout_mode = 0 +offset_left = 26.0 +offset_top = 150.0 +offset_right = 250.0 +offset_bottom = 281.0 +mouse_filter = 1 +position_offset = Vector2(26, 150) +resizable = true +title = "Blah" + +[node name="GraphNode2" type="GraphNode" parent="."] +layout_mode = 0 +offset_left = 312.0 +offset_top = 43.0 +offset_right = 536.0 +offset_bottom = 174.0 +mouse_filter = 1 +position_offset = Vector2(312, 43) +resizable = true +selected = true +title = "Blah" + +[node name="reroute" parent="." instance=ExtResource("1_cuyn0")] +layout_mode = 0 +offset_left = 163.0 +offset_top = 48.0 +offset_right = 223.0 +offset_bottom = 127.0 +mouse_filter = 1 +position_offset = Vector2(163, 48)