Calculator/Project/Scenes/functions.tscn
2025-04-15 11:51:57 -07:00

99 lines
2.5 KiB
Text

[gd_scene load_steps=3 format=3 uid="uid://bx1ggecby8xu1"]
[ext_resource type="Script" path="res://Scripts/Functions.gd" id="1_s06w2"]
[ext_resource type="PackedScene" uid="uid://cj0uj04i3vy83" path="res://Scenes/DifferentOptionsScroll.tscn" id="2_5e44h"]
[node name="Functions" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_s06w2")
[node name="OptionButton" parent="." instance=ExtResource("2_5e44h")]
layout_mode = 0
anchors_preset = 0
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
offset_left = 200.0
offset_top = 760.0
offset_right = 600.0
offset_bottom = 800.0
[node name="ArithmeticSeq" type="Label" parent="."]
layout_mode = 0
offset_right = 96.0
offset_bottom = 26.0
text = "Arithmetic Sequence"
[node name="Nth" type="LineEdit" parent="ArithmeticSeq"]
layout_mode = 0
offset_top = 20.0
offset_right = 161.0
offset_bottom = 51.0
placeholder_text = "Nth Number"
[node name="First Number" type="LineEdit" parent="ArithmeticSeq"]
layout_mode = 0
offset_top = 51.0
offset_right = 161.0
offset_bottom = 82.0
placeholder_text = "First Number"
[node name="Common Diff" type="LineEdit" parent="ArithmeticSeq"]
layout_mode = 0
offset_top = 81.0
offset_right = 161.0
offset_bottom = 112.0
placeholder_text = "Common Diff"
[node name="Submit" type="Button" parent="ArithmeticSeq"]
layout_mode = 0
offset_left = 46.0
offset_top = 113.0
offset_right = 109.0
offset_bottom = 144.0
text = "Submit"
[node name="GeometricSeq" type="Label" parent="."]
layout_mode = 0
offset_left = 162.0
offset_right = 322.0
offset_bottom = 26.0
text = "Geometric Sequence"
[node name="Nth" type="LineEdit" parent="GeometricSeq"]
layout_mode = 0
offset_top = 20.0
offset_right = 161.0
offset_bottom = 51.0
placeholder_text = "Nth Number"
[node name="First Number" type="LineEdit" parent="GeometricSeq"]
layout_mode = 0
offset_top = 51.0
offset_right = 161.0
offset_bottom = 82.0
placeholder_text = "First Number"
[node name="Common Ratio" type="LineEdit" parent="GeometricSeq"]
layout_mode = 0
offset_top = 81.0
offset_right = 161.0
offset_bottom = 112.0
placeholder_text = "Common Ratio"
[node name="Submit" type="Button" parent="GeometricSeq"]
layout_mode = 0
offset_left = 46.0
offset_top = 113.0
offset_right = 109.0
offset_bottom = 144.0
text = "Submit"
[connection signal="pressed" from="ArithmeticSeq/Submit" to="." method="ArithmeticSeq"]
[connection signal="pressed" from="GeometricSeq/Submit" to="." method="GeometricSeq"]