12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- [gd_scene load_steps=6 format=3 uid="uid://bhn22ugatic2y"]
- [ext_resource type="Theme" uid="uid://htiph5vt1b65" path="res://assets/theme.tres" id="1_hafsk"]
- [ext_resource type="Texture2D" uid="uid://crdr1r3gdxcaa" path="res://assets/background.png" id="2_u35jb"]
- [ext_resource type="Texture2D" uid="uid://bq8l7whcyrxki" path="res://assets/foreground.png" id="3_32qbq"]
- [ext_resource type="Script" path="res://scripts/play_button.gd" id="4_aleqr"]
- [ext_resource type="Script" path="res://scripts/quit_button.gd" id="5_min1e"]
- [node name="Control" type="Control"]
- layout_mode = 3
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- theme = ExtResource("1_hafsk")
- [node name="Background" type="Sprite2D" parent="."]
- texture = ExtResource("2_u35jb")
- centered = false
- region_enabled = true
- region_rect = Rect2(0, 0, 1280, 720)
- [node name="Foreground" type="Sprite2D" parent="."]
- texture_repeat = 2
- position = Vector2(640, 664)
- texture = ExtResource("3_32qbq")
- region_enabled = true
- region_rect = Rect2(0, 0, 1280, 112)
- [node name="VBoxContainer" type="VBoxContainer" parent="."]
- layout_mode = 1
- anchors_preset = 8
- anchor_left = 0.5
- anchor_top = 0.5
- anchor_right = 0.5
- anchor_bottom = 0.5
- offset_left = -143.5
- offset_top = -74.0
- offset_right = 143.5
- offset_bottom = 74.0
- grow_horizontal = 2
- grow_vertical = 2
- [node name="play_button" type="Button" parent="VBoxContainer"]
- layout_mode = 2
- text = "play"
- script = ExtResource("4_aleqr")
- [node name="quit_button" type="Button" parent="VBoxContainer"]
- layout_mode = 2
- text = "quit"
- script = ExtResource("5_min1e")
- [node name="title_shadow" type="Label" parent="."]
- layout_mode = 1
- anchors_preset = 14
- anchor_top = 0.5
- anchor_right = 1.0
- anchor_bottom = 0.5
- offset_left = 6.0
- offset_top = -249.0
- offset_right = 6.0
- offset_bottom = -181.0
- grow_horizontal = 2
- grow_vertical = 2
- theme_override_colors/font_color = Color(0, 0, 0, 1)
- theme_override_font_sizes/font_size = 50
- text = "copyright infringment bird"
- horizontal_alignment = 1
- [node name="title" type="Label" parent="."]
- layout_mode = 1
- anchors_preset = 14
- anchor_top = 0.5
- anchor_right = 1.0
- anchor_bottom = 0.5
- offset_top = -255.0
- offset_bottom = -187.0
- grow_horizontal = 2
- grow_vertical = 2
- theme_override_font_sizes/font_size = 50
- text = "copyright infringment bird"
- horizontal_alignment = 1
|