You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.8 KiB

[gd_scene load_steps=4 format=2]
[ext_resource path="res://gui/MainMenu.gd" type="Script" id=1]
[ext_resource path="res://gui/widgets/Background.tscn" type="PackedScene" id=2]
[ext_resource path="res://gui/themes/AndroidAppTheme.tres" type="Theme" id=3]
[node name="MainMenu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 3 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Background" parent="." instance=ExtResource( 2 )]
[node name="CenterContainer" type="CenterContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
margin_left = 224.0
margin_top = 305.0
margin_right = 376.0
margin_bottom = 495.0
[node name="NewPollButton" type="Button" parent="CenterContainer/VBoxContainer"]
margin_right = 152.0
margin_bottom = 46.0
text = "New Poll"
[node name="SettingsButton" type="Button" parent="CenterContainer/VBoxContainer"]
margin_top = 50.0
margin_right = 152.0
margin_bottom = 96.0
text = "Settings"
[node name="ExitButton" type="Button" parent="CenterContainer/VBoxContainer"]
margin_top = 100.0
margin_right = 152.0
margin_bottom = 146.0
text = "Exit"
[node name="VersionLabel" type="Label" parent="CenterContainer/VBoxContainer"]
margin_top = 150.0
margin_right = 152.0
margin_bottom = 190.0
text = "v0.1"
align = 1
[connection signal="pressed" from="CenterContainer/VBoxContainer/NewPollButton" to="." method="_on_NewPollButton_pressed"]
[connection signal="pressed" from="CenterContainer/VBoxContainer/SettingsButton" to="." method="_on_SettingsButton_pressed"]
[connection signal="pressed" from="CenterContainer/VBoxContainer/ExitButton" to="." method="_on_ExitButton_pressed"]