diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-08-27 00:39:58 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-08-27 00:39:58 -0400 |
commit | e4322bde34c2c8c864e3fd40bd254894d18fb15f (patch) | |
tree | fb07ac99416cbe258bb8415e39eeb1597b7be8d1 /screens/Schedule/Header.tscn | |
parent | 260fa2214e298686678d43ca58bcbfd493d563b3 (diff) | |
download | Planner-e4322bde34c2c8c864e3fd40bd254894d18fb15f.tar.gz Planner-e4322bde34c2c8c864e3fd40bd254894d18fb15f.zip |
Add Main Schedule Screen Prototype
Diffstat (limited to '')
-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"] |