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/TimeSlotItem.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/TimeSlotItem.tscn | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/screens/Schedule/TimeSlotItem.tscn b/screens/Schedule/TimeSlotItem.tscn new file mode 100644 index 0000000..95d9868 --- /dev/null +++ b/screens/Schedule/TimeSlotItem.tscn @@ -0,0 +1,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"] |