Comets.gd/scenes/game.tscn

68 lines
2.2 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=8 format=3 uid="uid://bdarunpk3c2eh"]
2024-05-09 22:42:55 -04:00
[ext_resource type="Script" path="res://scripts/game.gd" id="1_6727i"]
2024-05-09 22:42:55 -04:00
[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="Texture2D" uid="uid://chuygpyfe3y10" path="res://assets/img/star.png" id="4_jc3cg"]
[sub_resource type="Curve" id="Curve_8qyxb"]
_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(0.606742, 1), 0.052866, 0.052866, 0, 0, Vector2(1, 0.615385), 0.0, 0.0, 0, 0]
point_count = 3
[sub_resource type="Gradient" id="Gradient_rnjki"]
offsets = PackedFloat32Array(0, 0.406667, 0.84)
colors = PackedColorArray(0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1)
2024-05-09 22:42:55 -04:00
[node name="Game" type="Node2D"]
script = ExtResource("1_6727i")
2024-05-09 22:42:55 -04:00
[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="GameOverScreen" parent="UI" instance=ExtResource("3_yy075")]
visible = false
2024-05-10 20:42:22 -04:00
[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" type="CPUParticles2D" parent="Background"]
amount = 64
lifetime = 5.0
texture = ExtResource("4_jc3cg")
emission_shape = 3
emission_rect_extents = Vector2(1200, 700)
gravity = Vector2(0, 0)
scale_amount_curve = SubResource("Curve_8qyxb")
color_ramp = SubResource("Gradient_rnjki")
2024-05-09 22:42:55 -04:00
[node name="Ship" parent="." instance=ExtResource("1_esyqo")]
2024-05-10 20:42:22 -04:00
z_index = 1
position = Vector2(622, 309)
2024-05-12 00:47:14 -04:00
[connection signal="crashed" from="Ship" to="." method="game_over"]