diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-08-26 03:48:27 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-08-26 03:48:27 -0400 |
commit | febc05f628793d252066a173e8fce0826b2190fd (patch) | |
tree | 163b05a21767704b70a1add51d94abc2f64f3b97 /screens/Task/Body.tscn | |
parent | 4dc99b2d0ac8cb741d1cd968d46026fae70d031e (diff) | |
download | Planner-febc05f628793d252066a173e8fce0826b2190fd.tar.gz Planner-febc05f628793d252066a173e8fce0826b2190fd.zip |
Flesh Out Navigation and Populate Screens with Data
Diffstat (limited to '')
-rw-r--r-- | screens/Task/Body.tscn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/screens/Task/Body.tscn b/screens/Task/Body.tscn index 9185ad4..7f57ab2 100644 --- a/screens/Task/Body.tscn +++ b/screens/Task/Body.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=5 format=2] [ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1] -[ext_resource path="res://screens/Task/SubtaskItem.tscn" type="PackedScene" id=2] +[ext_resource path="res://screens/Task/Body.gd" type="Script" id=3] [sub_resource type="DynamicFont" id=2] size = 100 @@ -16,12 +16,14 @@ margin_left = 20.0 margin_top = 20.0 margin_right = 1046.0 margin_bottom = 1664.0 +script = ExtResource( 3 ) [node name="HBoxContainer" type="HBoxContainer" parent="."] margin_right = 1026.0 margin_bottom = 300.0 [node name="Length" type="Label" parent="HBoxContainer"] +unique_name_in_owner = true margin_right = 511.0 margin_bottom = 300.0 rect_min_size = Vector2( 0, 300 ) @@ -32,6 +34,7 @@ valign = 1 clip_text = true [node name="Description" type="TextEdit" parent="HBoxContainer"] +unique_name_in_owner = true margin_left = 515.0 margin_right = 1026.0 margin_bottom = 300.0 @@ -48,10 +51,7 @@ margin_right = 1026.0 margin_bottom = 1644.0 size_flags_vertical = 3 -[node name="SubtaskList" type="VBoxContainer" parent="ScrollContainer"] +[node name="SubTaskList" type="VBoxContainer" parent="ScrollContainer"] unique_name_in_owner = true margin_right = 1026.0 -margin_bottom = 110.0 size_flags_horizontal = 3 - -[node name="TaskItem" parent="ScrollContainer/SubtaskList" instance=ExtResource( 2 )] |