mirror of
https://codeberg.org/Melon-Bread/Comets.gd.git
synced 2024-11-24 21:18:21 -05:00
66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
[gd_scene load_steps=6 format=3 uid="uid://bdarunpk3c2eh"]
|
|
|
|
[ext_resource type="Script" path="res://scripts/game.gd" id="1_6727i"]
|
|
[ext_resource type="PackedScene" uid="uid://cbo47ftx0vcro" path="res://scenes/ship.tscn" id="1_esyqo"]
|
|
[ext_resource type="FontFile" uid="uid://bkcxbtx1vcj8w" path="res://assets/fonts/Color Basic.otf" id="2_gwtm0"]
|
|
[ext_resource type="PackedScene" uid="uid://0yktrbyp6cr3" path="res://scenes/game_over_screen.tscn" id="3_yy075"]
|
|
[ext_resource type="PackedScene" uid="uid://cemhlom425afn" path="res://scenes/stars.tscn" id="4_064lo"]
|
|
|
|
[node name="Game" type="Node2D"]
|
|
script = ExtResource("1_6727i")
|
|
|
|
[node name="UI" type="CanvasLayer" parent="."]
|
|
|
|
[node name="Score" type="Label" parent="UI"]
|
|
offset_right = 40.0
|
|
offset_bottom = 23.0
|
|
theme_override_fonts/font = ExtResource("2_gwtm0")
|
|
theme_override_font_sizes/font_size = 32
|
|
text = "SCORE: 0"
|
|
|
|
[node name="Level" type="Label" parent="UI"]
|
|
offset_left = 908.0
|
|
offset_right = 1148.0
|
|
offset_bottom = 45.0
|
|
theme_override_fonts/font = ExtResource("2_gwtm0")
|
|
theme_override_font_sizes/font_size = 32
|
|
text = "LEVEL: 1"
|
|
horizontal_alignment = 2
|
|
|
|
[node name="HighScore" type="Label" parent="UI"]
|
|
anchors_preset = 5
|
|
anchor_left = 0.5
|
|
anchor_right = 0.5
|
|
offset_left = -96.0
|
|
offset_right = 96.0
|
|
offset_bottom = 39.0
|
|
grow_horizontal = 2
|
|
theme_override_fonts/font = ExtResource("2_gwtm0")
|
|
theme_override_font_sizes/font_size = 18
|
|
text = "HIGH SCORE:
|
|
0"
|
|
horizontal_alignment = 1
|
|
|
|
[node name="GameOverScreen" parent="UI" instance=ExtResource("3_yy075")]
|
|
visible = false
|
|
|
|
[node name="Background" type="CanvasLayer" parent="."]
|
|
layer = -1
|
|
|
|
[node name="ColorRect" type="ColorRect" parent="Background"]
|
|
z_index = -1
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
color = Color(0, 0, 0, 1)
|
|
|
|
[node name="Stars" parent="Background" instance=ExtResource("4_064lo")]
|
|
|
|
[node name="Ship" parent="." instance=ExtResource("1_esyqo")]
|
|
z_index = 1
|
|
position = Vector2(622, 309)
|
|
|
|
[connection signal="crashed" from="Ship" to="." method="game_over"]
|