blob: c39877ea54660c67df0917e05831abaf4200d82d (
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/Header.gd" type="Script" id=1]
[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=2]
size = 100
font_data = ExtResource( 2 )
[node name="ScheduleHeader" type="Button"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1060.0
margin_bottom = 200.0
script = ExtResource( 1 )
[node name="HBoxContainer" type="HBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="Time" type="Label" parent="HBoxContainer"]
unique_name_in_owner = true
margin_top = 31.0
margin_right = 421.0
margin_bottom = 148.0
custom_fonts/font = SubResource( 2 )
text = "12:30 AM"
[node name="Name" type="Label" parent="HBoxContainer"]
unique_name_in_owner = true
margin_left = 425.0
margin_top = 31.0
margin_right = 1040.0
margin_bottom = 148.0
size_flags_horizontal = 3
custom_fonts/font = SubResource( 2 )
text = "Chore Block"
align = 2
[connection signal="button_up" from="." to="." method="_on_ScheduleHeader_button_up"]
|