summaryrefslogtreecommitdiff
path: root/components/space_background.tscn
diff options
context:
space:
mode:
authorSophia Pearson <codergal89@gmail.com>2026-05-20 09:39:22 +0200
committerSophia Pearson <codergal89@gmail.com>2026-05-20 09:39:22 +0200
commit75c83f4d7a628077d9ec98bfbd674699bfa20529 (patch)
tree092244938ba3f2bf9e4355840e7f65176a6f5e3f /components/space_background.tscn
downloadmoon-buggy-2d-75c83f4d7a628077d9ec98bfbd674699bfa20529.tar.xz
moon-buggy-2d-75c83f4d7a628077d9ec98bfbd674699bfa20529.zip
initial gdscript rewritedevelop
Diffstat (limited to 'components/space_background.tscn')
-rw-r--r--components/space_background.tscn32
1 files changed, 32 insertions, 0 deletions
diff --git a/components/space_background.tscn b/components/space_background.tscn
new file mode 100644
index 0000000..85307c9
--- /dev/null
+++ b/components/space_background.tscn
@@ -0,0 +1,32 @@
+[gd_scene load_steps=6 format=3 uid="uid://bkpids4l5roy3"]
+
+[ext_resource type="Script" uid="uid://ybcadaoxm4rq" path="res://components/space_background.gd" id="1_gqvc1"]
+[ext_resource type="Texture2D" uid="uid://cfkl3i6txy8na" path="res://assets/backgrounds/space_purple.png" id="1_stfb6"]
+[ext_resource type="Texture2D" uid="uid://gjjvdhpw6e7u" path="res://assets/backgrounds/stars_purple.png" id="2_wb1py"]
+[ext_resource type="Texture2D" uid="uid://bew8m2r1bb4y0" path="res://assets/backgrounds/space_blue.png" id="2_wdsn8"]
+[ext_resource type="Texture2D" uid="uid://er80b3t7dkhf" path="res://assets/backgrounds/stars_blue.png" id="4_kbbb8"]
+
+[node name="SpaceBackground" type="Node2D"]
+script = ExtResource("1_gqvc1")
+
+[node name="Space" type="Parallax2D" parent="."]
+repeat_size = Vector2(1024, 0)
+
+[node name="Blue" type="Sprite2D" parent="Space"]
+texture = ExtResource("2_wdsn8")
+centered = false
+
+[node name="Purple" type="Sprite2D" parent="Space"]
+texture = ExtResource("1_stfb6")
+centered = false
+
+[node name="Stars" type="Parallax2D" parent="."]
+repeat_size = Vector2(1024, 0)
+
+[node name="Blue" type="Sprite2D" parent="Stars"]
+texture = ExtResource("4_kbbb8")
+centered = false
+
+[node name="Purple" type="Sprite2D" parent="Stars"]
+texture = ExtResource("2_wb1py")
+centered = false