wellbeingapp/godot/start_menu.tscn

111 lines
3.4 KiB
Plaintext
Raw Normal View History

2022-08-17 09:10:31 +00:00
[gd_scene load_steps=8 format=2]
[ext_resource path="res://start_menu.gd" type="Script" id=1]
[ext_resource path="res://button_name.gd" type="Script" id=2]
[ext_resource path="res://button_email_feedback.gd" type="Script" id=3]
[ext_resource path="res://button_open_github.gd" type="Script" id=4]
2022-08-17 09:10:31 +00:00
[ext_resource path="res://wb_theme.tres" type="Theme" id=5]
2023-03-07 12:26:52 +00:00
[ext_resource path="res://Assets/fonts/noto_sans_display_italic.ttf" type="FontFile" id=6]
2022-08-17 09:10:31 +00:00
2023-03-07 12:26:52 +00:00
[sub_resource type="FontFile" id=1]
2022-08-17 09:10:31 +00:00
font_data = ExtResource( 6 )
[node name="start_menu" type="CanvasLayer"]
script = ExtResource( 1 )
2022-08-17 04:23:41 +00:00
[node name="welcome_title" type="Label" parent="."]
unique_name_in_owner = true
anchor_left = 0.5
anchor_right = 0.5
2023-03-07 12:26:52 +00:00
offset_left = -185.0
offset_top = 2.0
offset_right = 185.0
offset_bottom = 36.0
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
2022-08-17 04:23:41 +00:00
text = "All your base are belong to us"
[node name="HTTPRequest" type="HTTPRequest" parent="."]
[node name="version_label" type="Label" parent="."]
anchor_top = 1.0
anchor_bottom = 1.0
2023-03-07 12:26:52 +00:00
offset_left = 5.0
offset_top = -31.0
offset_right = 1280.0
offset_bottom = -1.0
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
custom_fonts/font = SubResource( 1 )
2022-08-17 04:23:41 +00:00
text = "Version"
2022-08-21 08:34:39 +00:00
[node name="GridContainer" type="HFlowContainer" parent="."]
2023-03-07 12:26:52 +00:00
offset_left = 10.0
offset_top = 55.0
offset_right = 1270.0
offset_bottom = 665.0
2022-08-21 08:34:39 +00:00
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 04:23:41 +00:00
[node name="button_daily_action" type="Button" parent="GridContainer"]
2023-03-07 12:26:52 +00:00
offset_right = 262.0
offset_bottom = 34.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "Daily Action"
2022-08-17 04:23:41 +00:00
[node name="button_open_github" type="Button" parent="GridContainer"]
2023-03-07 12:26:52 +00:00
offset_left = 270.0
offset_right = 475.0
offset_bottom = 34.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "GitHub"
script = ExtResource( 4 )
2022-08-17 04:23:41 +00:00
[node name="button_email_feedback" type="Button" parent="GridContainer"]
2023-03-07 12:26:52 +00:00
offset_left = 483.0
offset_right = 715.0
offset_bottom = 34.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "Feedback"
script = ExtResource( 3 )
2022-08-17 04:23:41 +00:00
[node name="button_name" type="Button" parent="GridContainer"]
2023-03-07 12:26:52 +00:00
offset_left = 723.0
offset_right = 913.0
offset_bottom = 34.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "Name"
script = ExtResource( 2 )
2022-08-17 04:23:41 +00:00
[node name="button_update_check" type="Button" parent="GridContainer"]
2023-03-07 12:26:52 +00:00
offset_left = 921.0
offset_right = 1257.0
offset_bottom = 34.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "Check for Updates"
2022-08-17 04:23:41 +00:00
[node name="button_journal" type="Button" parent="GridContainer"]
visible = false
2023-03-07 12:26:52 +00:00
offset_left = 634.0
offset_top = 412.0
offset_right = 1260.0
offset_bottom = 610.0
size_flags_horizontal = 3
size_flags_vertical = 3
2022-08-17 09:10:31 +00:00
theme = ExtResource( 5 )
text = "Journal"
[connection signal="request_completed" from="HTTPRequest" to="." method="_on_HTTPRequest_request_completed"]
2022-08-17 04:23:41 +00:00
[connection signal="pressed" from="GridContainer/button_open_github" to="GridContainer/button_open_github" method="_on_button_open_github_pressed"]
[connection signal="pressed" from="GridContainer/button_email_feedback" to="GridContainer/button_email_feedback" method="_on_button_email_feedback_pressed"]
[connection signal="pressed" from="GridContainer/button_name" to="GridContainer/button_name" method="_on_button_name_pressed"]
[connection signal="pressed" from="GridContainer/button_update_check" to="." method="_on_button_update_check_pressed"]