source: Studio/Interface/Pause.tscn@ 831a978

godot4-dev
Last change on this file since 831a978 was 831a978, checked in by Jonathan Neufeld <support@…>, 3 years ago

Initial commit of Godot4 project Working world and movable player.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1[gd_scene load_steps=2 format=3 uid="uid://x5xg17a5b7b8"]
2
3[ext_resource type="Script" path="res://Interface/Pause.gd" id="1_x800o"]
4
5[node name="ColorRect" type="ColorRect"]
6anchor_right = 1.0
7anchor_bottom = 1.0
8grow_horizontal = 2
9grow_vertical = 2
10color = Color(0.133333, 0.133333, 0.133333, 0.196078)
11script = ExtResource("1_x800o")
12
13[node name="VBoxContainer" type="VBoxContainer" parent="."]
14anchor_left = 0.5
15anchor_top = 0.5
16anchor_right = 0.5
17anchor_bottom = 0.5
18offset_left = -210.0
19offset_top = -29.5
20offset_right = 210.0
21offset_bottom = 29.5
22grow_horizontal = 2
23grow_vertical = 2
24alignment = 1
25metadata/_edit_layout_mode = 1
26
27[node name="Pause Menu" type="RichTextLabel" parent="VBoxContainer"]
28offset_right = 420.0
29offset_bottom = 23.0
30text = "Game Paused
31"
32fit_content_height = true
33
34[node name="Resume" type="Button" parent="VBoxContainer"]
35offset_top = 27.0
36offset_right = 420.0
37offset_bottom = 58.0
38text = "Resume"
39
40[connection signal="pressed" from="VBoxContainer/Resume" to="." method="_on_resume_pressed"]
Note: See TracBrowser for help on using the repository browser.