90 lines
2.6 KiB
Plaintext
90 lines
2.6 KiB
Plaintext
[gd_scene load_steps=6 format=3 uid="uid://cfl44pq56f8ht"]
|
|
|
|
[ext_resource type="PackedScene" path="res://Tools/Calculator.tscn" id="1"]
|
|
[ext_resource type="Script" path="res://startup.gd" id="2"]
|
|
[ext_resource type="Script" path="res://main_buttons.gd" id="3"]
|
|
[ext_resource type="PackedScene" path="res://Tools/Dice.tscn" id="4"]
|
|
|
|
[sub_resource type="Theme" id="1"]
|
|
|
|
[node name="StartupScreen" type="CanvasLayer"]
|
|
script = ExtResource("2")
|
|
|
|
[node name="GridContainer" type="GridContainer" parent="."]
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
offset_top = 60.0
|
|
theme = SubResource("1")
|
|
theme_override_constants/h_separation = 10
|
|
theme_override_constants/v_separation = 10
|
|
columns = 2
|
|
|
|
[node name="ButtonHangman" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Hangman"
|
|
|
|
[node name="ButtonCalculator" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Calculator"
|
|
script = ExtResource("3")
|
|
|
|
[node name="ButtonClock" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Clock"
|
|
|
|
[node name="ButtonTimer" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Timer"
|
|
|
|
[node name="ButtonFractions" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Fractions"
|
|
|
|
[node name="ButtonMultiplications" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Multiplications"
|
|
|
|
[node name="ButtonBirthday" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Birthday"
|
|
|
|
[node name="ButtonDice" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "Dice"
|
|
|
|
[node name="ButtonTimeOuts" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
text = "TimeOuts!"
|
|
|
|
[node name="ButtonDaily" type="Button" parent="GridContainer"]
|
|
layout_mode = 2
|
|
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"]
|