blob: 64747d949acf0180b2c14ea0c87356822a046036 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://screens/Schedule/Body.gd" type="Script" id=1]
[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=3]
size = 72
font_data = ExtResource( 2 )
[node name="ScheduleBody" type="VBoxContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1060.0
margin_bottom = 1676.0
script = ExtResource( 1 )
[node name="ScrollContainer" type="ScrollContainer" parent="."]
margin_right = 1040.0
margin_bottom = 1502.0
size_flags_vertical = 3
[node name="TimeSlotList" type="VBoxContainer" parent="ScrollContainer"]
unique_name_in_owner = true
margin_right = 1040.0
size_flags_horizontal = 3
[node name="HBoxContainer" type="HBoxContainer" parent="."]
margin_top = 1506.0
margin_right = 1040.0
margin_bottom = 1656.0
rect_min_size = Vector2( 0, 150 )
[node name="ManageTasks" type="Button" parent="HBoxContainer"]
margin_right = 1040.0
margin_bottom = 150.0
size_flags_horizontal = 3
custom_fonts/font = SubResource( 3 )
text = "Manage Tasks"
[connection signal="button_up" from="HBoxContainer/ManageTasks" to="." method="_on_ManageTasks_button_up"]
|