source: Studio/Dead_Popup.tscn@ 3c8ca52

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

(WIP) About to remove pause menu for testing.

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