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/Body.tscn | |
parent | 260fa2214e298686678d43ca58bcbfd493d563b3 (diff) | |
download | Planner-e4322bde34c2c8c864e3fd40bd254894d18fb15f.tar.gz Planner-e4322bde34c2c8c864e3fd40bd254894d18fb15f.zip |
Add Main Schedule Screen Prototype
Diffstat (limited to 'screens/Schedule/Body.tscn')
-rw-r--r-- | screens/Schedule/Body.tscn | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/screens/Schedule/Body.tscn b/screens/Schedule/Body.tscn new file mode 100644 index 0000000..64747d9 --- /dev/null +++ b/screens/Schedule/Body.tscn @@ -0,0 +1,40 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://screens/Schedule/Body.gd" type="Script" id=1] +[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=2] + +[sub_resource type="DynamicFont" id=3] +size = 72 +font_data = ExtResource( 2 ) + +[node name="ScheduleBody" type="VBoxContainer"] +margin_left = 20.0 +margin_top = 20.0 +margin_right = 1060.0 +margin_bottom = 1676.0 +script = ExtResource( 1 ) + +[node name="ScrollContainer" type="ScrollContainer" parent="."] +margin_right = 1040.0 +margin_bottom = 1502.0 +size_flags_vertical = 3 + +[node name="TimeSlotList" type="VBoxContainer" parent="ScrollContainer"] +unique_name_in_owner = true +margin_right = 1040.0 +size_flags_horizontal = 3 + +[node name="HBoxContainer" type="HBoxContainer" parent="."] +margin_top = 1506.0 +margin_right = 1040.0 +margin_bottom = 1656.0 +rect_min_size = Vector2( 0, 150 ) + +[node name="ManageTasks" type="Button" parent="HBoxContainer"] +margin_right = 1040.0 +margin_bottom = 150.0 +size_flags_horizontal = 3 +custom_fonts/font = SubResource( 3 ) +text = "Manage Tasks" + +[connection signal="button_up" from="HBoxContainer/ManageTasks" to="." method="_on_ManageTasks_button_up"] |