1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- [gd_scene load_steps=2 format=3 uid="uid://df1dmjx4ny0gd"]
- [ext_resource type="Script" path="res://thread.gd" id="1"]
- [node name="Thread" 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")
- [node name="Load" type="Button" parent="."]
- layout_mode = 1
- anchors_preset = 5
- anchor_left = 0.5
- anchor_right = 0.5
- offset_left = -115.0
- offset_top = 96.0
- offset_right = 115.0
- offset_bottom = 151.0
- grow_horizontal = 2
- size_flags_horizontal = 2
- size_flags_vertical = 2
- theme_override_font_sizes/font_size = 24
- text = "Load in Thread"
- [node name="ColorRect" type="Panel" parent="."]
- layout_mode = 0
- offset_left = 461.0
- offset_top = 160.0
- offset_right = 692.0
- offset_bottom = 489.0
- [node name="TextureRect" type="TextureRect" parent="."]
- layout_mode = 1
- anchors_preset = 8
- anchor_left = 0.5
- anchor_top = 0.5
- anchor_right = 0.5
- anchor_bottom = 0.5
- grow_horizontal = 2
- grow_vertical = 2
- stretch_mode = 5
- [connection signal="pressed" from="Load" to="." method="_on_load_pressed"]
|