source: Studio/Pause_Popup.tscn@ 0249beb

sandbox
Last change on this file since 0249beb was f7b09c8, checked in by Kevin Chapman <victory2b@…>, 4 years ago

First Draft of world test with working movement and loading screen.

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[f7b09c8]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://Pause_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="Pause_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 )
23window_title = "Game paused"
24script = ExtResource( 2 )
25__meta__ = {
26"_edit_use_anchors_": false
27}
28
29[node name="Button_resume" type="Button" parent="."]
30anchor_left = 0.5
31anchor_top = 1.0
32anchor_right = 0.5
33anchor_bottom = 1.0
34margin_left = -128.0
35margin_top = -134.0
36margin_right = 132.0
37margin_bottom = -74.0
38custom_fonts/font = SubResource( 1 )
39text = "Resume"
40__meta__ = {
41"_edit_use_anchors_": false
42}
43
44[node name="Button_quit" type="Button" parent="."]
45anchor_left = 0.5
46anchor_top = 1.0
47anchor_right = 0.5
48anchor_bottom = 1.0
49margin_left = -130.0
50margin_top = -69.0
51margin_right = 130.0
52margin_bottom = -9.0
53custom_fonts/font = SubResource( 1 )
54text = "Quit to title"
55
56[node name="Label" type="Label" parent="."]
57anchor_left = 0.5
58anchor_right = 0.5
59margin_left = -140.0
60margin_right = 140.0
61margin_bottom = 80.0
62custom_fonts/font = SubResource( 1 )
63custom_colors/font_color = Color( 0.767365, 0.753906, 1, 1 )
64custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
65custom_constants/shadow_offset_x = 2
66custom_constants/shadow_offset_y = 2
67text = "GAME PAUSED"
68align = 1
69valign = 1
70__meta__ = {
71"_edit_use_anchors_": false
72}
Note: See TracBrowser for help on using the repository browser.