diff options
Diffstat (limited to 'screens/Schedule/TimeSlotItem.tscn')
-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"] |