blob: 95d98687a5dcd723e674a581d6dd1c0e5ed27ef7 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
[gd_scene load_steps=5 format=2]
[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://screens/Schedule/TimeSlotItem.gd" type="Script" id=2]
[sub_resource type="DynamicFont" id=1]
size = 60
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=3]
size = 72
font_data = ExtResource( 1 )
[node name="TimeSlotItem" type="MarginContainer"]
margin_right = 1040.0
margin_bottom = 110.0
custom_constants/margin_top = 5
custom_constants/margin_bottom = 5
script = ExtResource( 2 )
[node name="HBoxContainer" type="HBoxContainer" parent="."]
margin_top = 5.0
margin_right = 1040.0
margin_bottom = 105.0
[node name="Time" type="Label" parent="HBoxContainer"]
unique_name_in_owner = true
margin_top = 14.0
margin_right = 332.0
margin_bottom = 85.0
custom_fonts/font = SubResource( 1 )
text = "12:30 AM ... "
[node name="Button" type="Button" parent="HBoxContainer"]
margin_left = 336.0
margin_right = 1040.0
margin_bottom = 100.0
rect_min_size = Vector2( 0, 100 )
size_flags_horizontal = 3
[node name="HBoxContainer" type="HBoxContainer" parent="HBoxContainer/Button"]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="Name" type="Label" parent="HBoxContainer/Button/HBoxContainer"]
unique_name_in_owner = true
margin_top = 8.0
margin_right = 704.0
margin_bottom = 92.0
size_flags_horizontal = 3
custom_fonts/font = SubResource( 3 )
text = "Chore Block"
align = 1
[connection signal="button_up" from="HBoxContainer/Button" to="." method="_on_Button_button_up"]
|