From 567ab063365f078f7ef7e5ed03c27cbfaa4baf16 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 18 Nov 2021 17:33:09 +0200 Subject: [PATCH] fix --- source/fonts/oxygen/oxygen_bold_formula.tres | 2 +- .../trinity_site/trinity_site_level.tscn | 59 +---- source/scenes/GUI/main_menu.tscn | 5 +- .../scenes/OVERLAY/elements/user_input.tscn | 227 ++++++++++++------ 4 files changed, 163 insertions(+), 130 deletions(-) diff --git a/source/fonts/oxygen/oxygen_bold_formula.tres b/source/fonts/oxygen/oxygen_bold_formula.tres index 6d0f1aa..bd98740 100644 --- a/source/fonts/oxygen/oxygen_bold_formula.tres +++ b/source/fonts/oxygen/oxygen_bold_formula.tres @@ -3,7 +3,7 @@ [ext_resource path="res://source/fonts/oxygen/Oxygen-Bold.ttf" type="DynamicFontData" id=1] [resource] -size = 26 +size = 20 use_mipmaps = true use_filter = true font_data = ExtResource( 1 ) diff --git a/source/levels/trinity_site/trinity_site_level.tscn b/source/levels/trinity_site/trinity_site_level.tscn index befc21b..d9f85ef 100644 --- a/source/levels/trinity_site/trinity_site_level.tscn +++ b/source/levels/trinity_site/trinity_site_level.tscn @@ -1,30 +1,21 @@ -[gd_scene load_steps=18 format=2] +[gd_scene load_steps=16 format=2] [ext_resource path="res://source/assets/scripts/server_handlers/trinity_site_level.gd" type="Script" id=1] [ext_resource path="res://source/assets/scripts/ui_element_handlers/UI.gd" type="Script" id=2] [ext_resource path="res://source/levels/trinity_site/images/trinity_site_level_layout_level_design_z_index_0.svg" type="Texture" id=3] -[ext_resource path="res://source/fonts/roboto/Roboto-Regular.ttf" type="DynamicFontData" id=4] -[ext_resource path="res://source/assets/scripts/ui_element_handlers/winner.gd" type="Script" id=5] [ext_resource path="res://source/assets/scripts/ui_element_handlers/game_UI.gd" type="Script" id=6] [ext_resource path="res://source/levels/trinity_site/images/trinity_site_level_layout_level_design_z_index_4.svg" type="Texture" id=7] [ext_resource path="res://source/levels/trinity_site/images/trinity_site_level_layout_level_design_z_index_3.svg" type="Texture" id=8] [ext_resource path="res://source/entities/grass/grass_node.tscn" type="PackedScene" id=9] [ext_resource path="res://source/levels/trinity_site/images/trinity_site_level_layout_level_design_z_index_2.svg" type="Texture" id=10] [ext_resource path="res://source/levels/trinity_site/images/trinity_site_level_layout_level_design_z_index_1.svg" type="Texture" id=11] +[ext_resource path="res://source/scenes/OVERLAY/elements/win_lose_screen.tscn" type="PackedScene" id=12] [ext_resource path="res://source/scenes/OVERLAY/elements/menu_button.tscn" type="PackedScene" id=13] [ext_resource path="res://source/scenes/OVERLAY/elements/trajectory_control.tscn" type="PackedScene" id=14] [ext_resource path="res://source/scenes/OVERLAY/elements/user_input.tscn" type="PackedScene" id=15] [ext_resource path="res://source/scenes/OVERLAY/elements/timer.tscn" type="PackedScene" id=16] [ext_resource path="res://source/assets/scripts/trinity_site_body_handler.gd" type="Script" id=46] -[sub_resource type="DynamicFont" id=1] -size = 120 -outline_size = 7 -outline_color = Color( 0, 0, 0, 1 ) -use_mipmaps = true -use_filter = true -font_data = ExtResource( 4 ) - [node name="trinity-site" type="Node2D"] script = ExtResource( 1 ) @@ -152,50 +143,12 @@ script = ExtResource( 2 ) [node name="game_UI" type="CanvasLayer" parent="."] script = ExtResource( 6 ) -[node name="winner" type="Label" parent="game_UI"] -anchor_top = 0.5 -anchor_right = 1.0 -anchor_bottom = 0.5 -margin_left = 2.37842 -margin_top = -35.5 -margin_right = 2.37842 -margin_bottom = 106.5 -custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) -custom_constants/shadow_offset_x = 6 -custom_constants/shadow_offset_y = 6 -custom_fonts/font = SubResource( 1 ) -text = "You are the winner" -align = 1 -valign = 1 -script = ExtResource( 5 ) -__meta__ = { -"_edit_lock_": true, -"_edit_use_anchors_": false -} +[node name="win_lose_screen" parent="game_UI" instance=ExtResource( 12 )] +position = Vector2( 0, 360 ) -[node name="win_timer" type="Timer" parent="game_UI/winner"] +[node name="win_timer" type="Timer" parent="game_UI/win_lose_screen"] wait_time = 4.0 -[node name="loser" type="Label" parent="game_UI"] -anchor_top = 0.5 -anchor_right = 1.0 -anchor_bottom = 0.5 -margin_left = 2.37842 -margin_top = -35.5 -margin_right = 2.37842 -margin_bottom = 106.5 -custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) -custom_constants/shadow_offset_x = 6 -custom_constants/shadow_offset_y = 6 -custom_fonts/font = SubResource( 1 ) -text = "You lost" -align = 1 -valign = 1 -__meta__ = { -"_edit_lock_": true, -"_edit_use_anchors_": false -} - [node name="controls" type="Control" parent="."] margin_left = -2.1189 margin_right = 1917.88 @@ -229,5 +182,3 @@ anchor_left = 0.5 anchor_right = 0.5 margin_left = -225.0 margin_right = 225.0 - -[connection signal="timeout" from="game_UI/winner/win_timer" to="game_UI/winner" method="_on_win_timer_timeout"] diff --git a/source/scenes/GUI/main_menu.tscn b/source/scenes/GUI/main_menu.tscn index c81ebdc..a23039a 100644 --- a/source/scenes/GUI/main_menu.tscn +++ b/source/scenes/GUI/main_menu.tscn @@ -54,6 +54,7 @@ margin_left = -150.0 margin_top = -36.0 margin_right = 150.0 margin_bottom = 36.0 +custom_fonts/font = ExtResource( 5 ) custom_colors/font_color = Color( 0, 0, 0, 1 ) text = "playground" align = 1 @@ -79,8 +80,8 @@ margin_left = -98.8223 margin_top = -36.0 margin_right = 134.178 margin_bottom = 36.0 -custom_colors/font_color = Color( 0, 0, 0, 1 ) custom_fonts/font = ExtResource( 5 ) +custom_colors/font_color = Color( 0, 0, 0, 1 ) text = "LAN Party" align = 1 valign = 1 @@ -111,8 +112,8 @@ margin_left = -150.0 margin_top = -36.0 margin_right = 150.0 margin_bottom = 36.0 -custom_colors/font_color = Color( 0, 0, 0, 1 ) custom_fonts/font = ExtResource( 5 ) +custom_colors/font_color = Color( 0, 0, 0, 1 ) text = "EXIT" align = 1 valign = 1 diff --git a/source/scenes/OVERLAY/elements/user_input.tscn b/source/scenes/OVERLAY/elements/user_input.tscn index c5985f6..ef6aa1f 100644 --- a/source/scenes/OVERLAY/elements/user_input.tscn +++ b/source/scenes/OVERLAY/elements/user_input.tscn @@ -1,10 +1,9 @@ -[gd_scene load_steps=30 format=2] +[gd_scene load_steps=38 format=2] [ext_resource path="res://source/assets/sprites/GUI/in_game/user_input/background_panel.svg" type="Texture" id=1] [ext_resource path="res://source/fonts/oxygen/Oxygen-Regular.ttf" type="DynamicFontData" id=2] [ext_resource path="res://source/assets/sprites/GUI/in_game/trajectories/line_active.svg" type="Texture" id=3] [ext_resource path="res://source/assets/sprites/GUI/in_game/trajectories/hyperbol_active.svg" type="Texture" id=4] -[ext_resource path="res://source/assets/sprites/GUI/in_game/trajectories/parabol_active.svg" type="Texture" id=5] [ext_resource path="res://source/assets/sprites/GUI/in_game/trajectories/sin_active.svg" type="Texture" id=6] [ext_resource path="res://source/assets/sprites/GUI/in_game/user_input/skip_button/skip_button_pressedsvg.svg" type="Texture" id=7] [ext_resource path="res://source/assets/sprites/GUI/in_game/user_input/skip_button/skip_button_hover.svg" type="Texture" id=8] @@ -13,7 +12,6 @@ [ext_resource path="res://source/assets/sprites/GUI/in_game/user_input/ready_button/ready_button_hover.svg" type="Texture" id=11] [ext_resource path="res://source/assets/sprites/GUI/in_game/user_input/skip_button/skip_button.svg" type="Texture" id=12] [ext_resource path="res://source/assets/scripts/shooting/Trajectories/trajectories.gd" type="Script" id=13] -[ext_resource path="res://source/fonts/oxygen/Oxygen-Bold.ttf" type="DynamicFontData" id=15] [ext_resource path="res://source/assets/sprites/GUI/in_game/buttons/SpinBox/updown.svg" type="Texture" id=16] [ext_resource path="res://source/fonts/oxygen/oxygen_bold_formula.tres" type="DynamicFont" id=17] @@ -21,21 +19,14 @@ texture = ExtResource( 1 ) region_rect = Rect2( 0, 0, 480, 156 ) -[sub_resource type="StyleBoxTexture" id=4] +[sub_resource type="StyleBoxTexture" id=2] texture = ExtResource( 3 ) region_rect = Rect2( 0, 0, 100, 100 ) -[sub_resource type="DynamicFont" id=5] -size = 14 -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) - -[sub_resource type="StyleBoxFlat" id=6] +[sub_resource type="StyleBoxFlat" id=3] bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) -border_color = Color( 1, 1, 1, 0 ) -[sub_resource type="Theme" id=7] +[sub_resource type="Theme" id=4] default_font = ExtResource( 17 ) LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) @@ -48,46 +39,154 @@ LineEdit/constants/minimum_spaces = 12 LineEdit/fonts/font = null LineEdit/icons/clear = null LineEdit/styles/focus = null -LineEdit/styles/normal = SubResource( 6 ) +LineEdit/styles/normal = SubResource( 3 ) LineEdit/styles/read_only = null -[sub_resource type="StyleBoxTexture" id=8] -texture = ExtResource( 5 ) -region_rect = Rect2( 0, 0, 100, 100 ) +[sub_resource type="StyleBoxFlat" id=5] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) -[sub_resource type="DynamicFont" id=9] -size = 14 -use_mipmaps = true -use_filter = true -font_data = ExtResource( 2 ) +[sub_resource type="Theme" id=6] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 5 ) +LineEdit/styles/read_only = null -[sub_resource type="StyleBoxTexture" id=10] +[sub_resource type="StyleBoxFlat" id=7] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) + +[sub_resource type="Theme" id=8] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 7 ) +LineEdit/styles/read_only = null + +[sub_resource type="StyleBoxTexture" id=9] texture = ExtResource( 4 ) region_rect = Rect2( 0, 0, 100, 100 ) -[sub_resource type="DynamicFont" id=11] +[sub_resource type="DynamicFont" id=10] size = 14 use_mipmaps = true use_filter = true font_data = ExtResource( 2 ) -[sub_resource type="StyleBoxTexture" id=12] +[sub_resource type="StyleBoxFlat" id=11] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) + +[sub_resource type="Theme" id=12] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 11 ) +LineEdit/styles/read_only = null + +[sub_resource type="StyleBoxFlat" id=13] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) + +[sub_resource type="Theme" id=14] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 13 ) +LineEdit/styles/read_only = null + +[sub_resource type="StyleBoxTexture" id=15] +texture = ExtResource( 4 ) +region_rect = Rect2( 0, 0, 100, 100 ) + +[sub_resource type="StyleBoxTexture" id=16] texture = ExtResource( 6 ) region_rect = Rect2( 0, 0, 100, 100 ) -[sub_resource type="DynamicFont" id=13] -size = 32 -use_mipmaps = true -use_filter = true -font_data = ExtResource( 15 ) +[sub_resource type="StyleBoxFlat" id=17] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) -[sub_resource type="DynamicFont" id=2] +[sub_resource type="Theme" id=18] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 17 ) +LineEdit/styles/read_only = null + +[sub_resource type="StyleBoxFlat" id=19] +bg_color = Color( 0.333333, 0.431373, 0.807843, 1 ) + +[sub_resource type="Theme" id=20] +default_font = ExtResource( 17 ) +LineEdit/colors/clear_button_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/clear_button_color_pressed = Color( 1, 1, 1, 1 ) +LineEdit/colors/cursor_color = Color( 0.94, 0.94, 0.94, 1 ) +LineEdit/colors/font_color = Color( 0.88, 0.88, 0.88, 1 ) +LineEdit/colors/font_color_selected = Color( 0, 0, 0, 1 ) +LineEdit/colors/font_color_uneditable = Color( 0.88, 0.88, 0.88, 0.5 ) +LineEdit/colors/selection_color = Color( 0.49, 0.49, 0.49, 1 ) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = null +LineEdit/icons/clear = null +LineEdit/styles/focus = null +LineEdit/styles/normal = SubResource( 19 ) +LineEdit/styles/read_only = null + +[sub_resource type="DynamicFont" id=21] size = 22 use_mipmaps = true use_filter = true font_data = ExtResource( 2 ) -[sub_resource type="DynamicFont" id=3] +[sub_resource type="DynamicFont" id=22] +size = 22 +use_mipmaps = true +use_filter = true +font_data = ExtResource( 2 ) + +[sub_resource type="DynamicFont" id=23] size = 22 use_mipmaps = true use_filter = true @@ -116,10 +215,10 @@ __meta__ = { } [node name="line" type="Control" parent="controls"] -visible = false anchor_right = 1.0 anchor_bottom = 1.0 __meta__ = { +"_edit_lock_": true, "_edit_use_anchors_": false } @@ -133,7 +232,7 @@ margin_top = -50.0 margin_right = -165.0 margin_bottom = 50.0 mouse_filter = 1 -custom_styles/panel = SubResource( 4 ) +custom_styles/panel = SubResource( 2 ) __meta__ = { "_edit_lock_": true, "_edit_use_anchors_": false @@ -145,9 +244,8 @@ anchor_top = 1.0 anchor_right = 0.5 anchor_bottom = 1.0 margin_left = -39.0 -margin_top = -19.0 +margin_top = -18.0 margin_right = 39.0 -custom_fonts/font = SubResource( 5 ) custom_colors/font_color = Color( 0, 0, 0, 1 ) text = "line" align = 1 @@ -158,25 +256,6 @@ __meta__ = { "_edit_use_anchors_": false } -[node name="fx" type="Label" parent="controls/line"] -visible = false -anchor_left = 0.5 -anchor_top = 0.5 -anchor_right = 0.5 -anchor_bottom = 0.5 -margin_left = -75.0 -margin_top = -17.0 -margin_right = -5.0 -margin_bottom = 17.0 -custom_fonts/font = ExtResource( 17 ) -text = "f(x) = " -align = 1 -valign = 1 -__meta__ = { -"_edit_lock_": true, -"_edit_use_anchors_": false -} - [node name="line_SpinBox" type="SpinBox" parent="controls/line"] use_parent_material = true anchor_left = 0.5 @@ -187,7 +266,7 @@ margin_left = -75.0 margin_top = -17.0 margin_right = 75.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 4 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -205,6 +284,7 @@ visible = false anchor_right = 1.0 anchor_bottom = 1.0 __meta__ = { +"_edit_lock_": true, "_edit_use_anchors_": false } @@ -215,7 +295,7 @@ anchor_bottom = 0.5 margin_top = -17.0 margin_right = 160.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 6 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -237,7 +317,7 @@ anchor_bottom = 0.5 margin_left = -140.0 margin_top = -17.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 8 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -260,7 +340,7 @@ margin_top = -50.0 margin_right = -165.0 margin_bottom = 50.0 mouse_filter = 1 -custom_styles/panel = SubResource( 8 ) +custom_styles/panel = SubResource( 9 ) __meta__ = { "_edit_lock_": true, "_edit_use_anchors_": false @@ -274,9 +354,9 @@ anchor_bottom = 1.0 margin_left = -39.0 margin_top = -19.0 margin_right = 39.0 -custom_fonts/font = SubResource( 9 ) +custom_fonts/font = SubResource( 10 ) custom_colors/font_color = Color( 0, 0, 0, 1 ) -text = "parabol" +text = "parabola" align = 1 valign = 1 uppercase = true @@ -290,6 +370,7 @@ visible = false anchor_right = 1.0 anchor_bottom = 1.0 __meta__ = { +"_edit_lock_": true, "_edit_use_anchors_": false } @@ -300,7 +381,7 @@ anchor_bottom = 0.5 margin_top = -17.0 margin_right = 150.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 12 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -321,7 +402,7 @@ anchor_bottom = 0.5 margin_left = -150.0 margin_top = -17.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 14 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -343,7 +424,7 @@ margin_left = -265.0 margin_top = -50.0 margin_right = -165.0 margin_bottom = 50.0 -custom_styles/panel = SubResource( 10 ) +custom_styles/panel = SubResource( 15 ) __meta__ = { "_edit_lock_": true, "_edit_use_anchors_": false @@ -357,9 +438,9 @@ anchor_bottom = 1.0 margin_left = -39.0 margin_top = -19.0 margin_right = 39.0 -custom_fonts/font = SubResource( 11 ) +custom_fonts/font = SubResource( 10 ) custom_colors/font_color = Color( 0, 0, 0, 1 ) -text = "hyperbol" +text = "hyperbola" align = 1 valign = 1 uppercase = true @@ -386,7 +467,7 @@ margin_left = -265.0 margin_top = -50.0 margin_right = -165.0 margin_bottom = 50.0 -custom_styles/panel = SubResource( 12 ) +custom_styles/panel = SubResource( 16 ) __meta__ = { "_edit_lock_": true, "_edit_use_anchors_": false @@ -400,7 +481,7 @@ anchor_bottom = 1.0 margin_left = -39.0 margin_top = -19.0 margin_right = 39.0 -custom_fonts/font = SubResource( 11 ) +custom_fonts/font = SubResource( 10 ) custom_colors/font_color = Color( 0, 0, 0, 1 ) text = "sine" align = 1 @@ -418,7 +499,7 @@ anchor_bottom = 0.5 margin_top = -17.0 margin_right = 150.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 18 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -439,7 +520,7 @@ anchor_bottom = 0.5 margin_left = -150.0 margin_top = -17.0 margin_bottom = 17.0 -theme = SubResource( 7 ) +theme = SubResource( 20 ) custom_icons/updown = ExtResource( 16 ) min_value = -15.0 max_value = 15.0 @@ -455,7 +536,7 @@ __meta__ = { [node name="Label" type="Label" parent="controls"] anchor_right = 1.0 margin_bottom = 41.0 -custom_fonts/font = SubResource( 13 ) +custom_fonts/font = SubResource( 21 ) text = "Active formula" align = 1 valign = 1 @@ -479,7 +560,7 @@ __meta__ = { [node name="Label" type="Label" parent="controls/ready_button"] anchor_right = 1.0 anchor_bottom = 1.0 -custom_fonts/font = SubResource( 2 ) +custom_fonts/font = SubResource( 22 ) text = "Ready" align = 1 valign = 1 @@ -503,7 +584,7 @@ __meta__ = { [node name="Label" type="Label" parent="controls/skip_button"] anchor_right = 1.0 anchor_bottom = 1.0 -custom_fonts/font = SubResource( 3 ) +custom_fonts/font = SubResource( 23 ) text = "Skip" align = 1 valign = 1