source: Studio/Dead_Popup.tscn@ 25e7b67

sandbox
Last change on this file since 25e7b67 was 25e7b67, checked in by Kevin Chapman <victory2b@…>, 3 years ago

Got Food item to increase player stats by 10 when walking into the food space.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1[gd_scene load_steps=3 format=2]
2
3[ext_resource path="res://assets/Titillium-Regular.otf" type="DynamicFontData" id=1]
4
5[sub_resource type="DynamicFont" id=1]
6size = 32
7use_filter = true
8font_data = ExtResource( 1 )
9
10[node name="Dead_Popup" type="WindowDialog"]
11pause_mode = 2
12anchor_left = 0.5
13anchor_top = 0.5
14anchor_right = 0.5
15anchor_bottom = 0.5
16margin_left = -140.0
17margin_top = -115.0
18margin_right = 140.0
19margin_bottom = 115.0
20rect_min_size = Vector2( 280, 230 )
21custom_fonts/title_font = SubResource( 1 )
22__meta__ = {
23"_edit_use_anchors_": false
24}
25
26[node name="Button_respawn" type="Button" parent="."]
27visible = false
28anchor_left = 0.5
29anchor_top = 1.0
30anchor_right = 0.5
31anchor_bottom = 1.0
32margin_left = -128.0
33margin_top = -134.0
34margin_right = 132.0
35margin_bottom = -74.0
36custom_fonts/font = SubResource( 1 )
37text = "Respawn"
38__meta__ = {
39"_edit_use_anchors_": false
40}
41
42[node name="Button_quit" type="Button" parent="."]
43anchor_left = 0.5
44anchor_top = 1.0
45anchor_right = 0.5
46anchor_bottom = 1.0
47margin_left = -130.0
48margin_top = -69.0
49margin_right = 130.0
50margin_bottom = -9.0
51custom_fonts/font = SubResource( 1 )
52text = "Quit to title"
53
54[node name="Label" type="Label" parent="."]
55anchor_left = 0.5
56anchor_right = 0.5
57margin_left = -140.0
58margin_right = 140.0
59margin_bottom = 80.0
60custom_fonts/font = SubResource( 1 )
61custom_colors/font_color = Color( 0.767365, 0.753906, 1, 1 )
62custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
63custom_constants/shadow_offset_x = 2
64custom_constants/shadow_offset_y = 2
65text = "You Are Dead"
66align = 1
67valign = 1
68__meta__ = {
69"_edit_use_anchors_": false
70}
71[connection signal="hide" from="." to="." method="_on_Dead_Popup_hide"]
72[connection signal="visibility_changed" from="." to="." method="_on_Dead_Popup_visibility_changed"]
Note: See TracBrowser for help on using the repository browser.