diff options
Diffstat (limited to 'screens/Schedule/Header.tscn')
-rw-r--r-- | screens/Schedule/Header.tscn | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/screens/Schedule/Header.tscn b/screens/Schedule/Header.tscn new file mode 100644 index 0000000..c39877e --- /dev/null +++ b/screens/Schedule/Header.tscn @@ -0,0 +1,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"] |