112 lines
3.0 KiB
Plaintext
112 lines
3.0 KiB
Plaintext
|
[gd_scene load_steps=6 format=2]
|
||
|
|
||
|
[ext_resource path="res://Tools/Calculator.tscn" type="PackedScene" id=1]
|
||
|
[ext_resource path="res://startup.gd" type="Script" id=2]
|
||
|
[ext_resource path="res://main_buttons.gd" type="Script" id=3]
|
||
|
[ext_resource path="res://Tools/Dice.tscn" type="PackedScene" id=4]
|
||
|
|
||
|
[sub_resource type="Theme" id=1]
|
||
|
|
||
|
[node name="StartupScreen" type="CanvasLayer"]
|
||
|
script = ExtResource( 2 )
|
||
|
|
||
|
[node name="GridContainer" type="GridContainer" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
margin_top = 60.0
|
||
|
theme = SubResource( 1 )
|
||
|
custom_constants/vseparation = 10
|
||
|
custom_constants/hseparation = 10
|
||
|
columns = 2
|
||
|
|
||
|
[node name="ButtonHangman" type="Button" parent="GridContainer"]
|
||
|
margin_right = 507.0
|
||
|
margin_bottom = 100.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Hangman"
|
||
|
|
||
|
[node name="ButtonCalculator" type="Button" parent="GridContainer"]
|
||
|
margin_left = 517.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 100.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Calculator"
|
||
|
script = ExtResource( 3 )
|
||
|
|
||
|
[node name="ButtonClock" type="Button" parent="GridContainer"]
|
||
|
margin_top = 110.0
|
||
|
margin_right = 507.0
|
||
|
margin_bottom = 210.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Clock"
|
||
|
|
||
|
[node name="ButtonTimer" type="Button" parent="GridContainer"]
|
||
|
margin_left = 517.0
|
||
|
margin_top = 110.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 210.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Timer"
|
||
|
|
||
|
[node name="ButtonFractions" type="Button" parent="GridContainer"]
|
||
|
margin_top = 220.0
|
||
|
margin_right = 507.0
|
||
|
margin_bottom = 320.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Fractions"
|
||
|
|
||
|
[node name="ButtonMultiplications" type="Button" parent="GridContainer"]
|
||
|
margin_left = 517.0
|
||
|
margin_top = 220.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 320.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Multiplications"
|
||
|
|
||
|
[node name="ButtonBirthday" type="Button" parent="GridContainer"]
|
||
|
margin_top = 330.0
|
||
|
margin_right = 507.0
|
||
|
margin_bottom = 430.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Birthday"
|
||
|
|
||
|
[node name="ButtonDice" type="Button" parent="GridContainer"]
|
||
|
margin_left = 517.0
|
||
|
margin_top = 330.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 430.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "Dice"
|
||
|
|
||
|
[node name="ButtonTimeOuts" type="Button" parent="GridContainer"]
|
||
|
margin_top = 440.0
|
||
|
margin_right = 507.0
|
||
|
margin_bottom = 540.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_vertical = 3
|
||
|
text = "TimeOuts!"
|
||
|
|
||
|
[node name="ButtonDaily" type="Button" parent="GridContainer"]
|
||
|
margin_left = 517.0
|
||
|
margin_top = 440.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 540.0
|
||
|
text = "Daily Inspiration"
|
||
|
|
||
|
[node name="CalculatorScreen" parent="." instance=ExtResource( 1 )]
|
||
|
visible = false
|
||
|
|
||
|
[node name="DiceScreen" parent="." instance=ExtResource( 4 )]
|
||
|
visible = false
|
||
|
|
||
|
[connection signal="pressed" from="GridContainer/ButtonCalculator" to="GridContainer/ButtonCalculator" method="_on_ButtonCalculator_pressed"]
|
||
|
[connection signal="pressed" from="GridContainer/ButtonDice" to="GridContainer/ButtonCalculator" method="_on_ButtonDice_pressed"]
|