thomas_2023/day_5/control.tscn

72 lines
1.3 KiB
Text

[gd_scene load_steps=2 format=3 uid="uid://c1aqg2ll45ark"]
[ext_resource type="Script" path="res://Main.gd" id="1_d4djv"]
[node name="Control" type="Control"]
layout_mode = 3
anchor_right = 0.428
anchor_bottom = 0.84
offset_right = 1.94397
offset_bottom = -0.320007
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_d4djv")
[node name="TextEdit" type="TextEdit" parent="."]
layout_mode = 0
offset_left = 57.0
offset_top = 45.0
offset_right = 458.0
offset_bottom = 359.0
text = "seeds: 79 14 55 13
seed-to-soil map:
50 98 2
52 50 48
soil-to-fertilizer map:
0 15 37
37 52 2
39 0 15
fertilizer-to-water map:
49 53 8
0 11 42
42 0 7
57 7 4
water-to-light map:
88 18 7
18 25 70
light-to-temperature map:
45 77 23
81 45 19
68 64 13
temperature-to-humidity map:
0 69 1
1 0 69
humidity-to-location map:
60 56 37
56 93 4"
[node name="Button" type="Button" parent="."]
layout_mode = 0
offset_left = 52.0
offset_top = 441.0
offset_right = 217.0
offset_bottom = 502.0
text = "Part 1"
[node name="Button2" type="Button" parent="."]
layout_mode = 0
offset_left = 296.0
offset_top = 453.0
offset_right = 461.0
offset_bottom = 514.0
text = "Part 2"
[connection signal="pressed" from="Button" to="." method="_on_part1"]
[connection signal="pressed" from="Button2" to="." method="_on_part2"]