thomas_2023/day_5/control.tscn

73 lines
1.3 KiB
Text
Raw Normal View History

2023-12-09 13:20:02 -05:00
[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
2023-12-09 16:57:10 -05:00
text = "seeds: 79 14 55 13
2023-12-09 14:31:28 -05:00
seed-to-soil map:
2023-12-09 16:57:10 -05:00
50 98 2
52 50 48
2023-12-09 14:31:28 -05:00
soil-to-fertilizer map:
2023-12-09 16:57:10 -05:00
0 15 37
37 52 2
39 0 15
2023-12-09 14:31:28 -05:00
fertilizer-to-water map:
2023-12-09 16:57:10 -05:00
49 53 8
0 11 42
42 0 7
57 7 4
2023-12-09 14:31:28 -05:00
water-to-light map:
2023-12-09 16:57:10 -05:00
88 18 7
18 25 70
2023-12-09 14:31:28 -05:00
light-to-temperature map:
2023-12-09 16:57:10 -05:00
45 77 23
81 45 19
68 64 13
2023-12-09 14:31:28 -05:00
temperature-to-humidity map:
2023-12-09 16:57:10 -05:00
0 69 1
1 0 69
2023-12-09 14:31:28 -05:00
humidity-to-location map:
2023-12-09 16:57:10 -05:00
60 56 37
56 93 4"
2023-12-09 13:20:02 -05:00
[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"]