瀏覽代碼

:tada: Add a star following a path

DricomDragon 2 年之前
父節點
當前提交
f231f9942c
共有 4 個文件被更改,包括 40 次插入0 次删除
  1. 9 0
      godot/component/entity/star/Star.gd
  2. 10 0
      godot/component/entity/star/Star.tscn
  3. 1 0
      godot/project.godot
  4. 20 0
      godot/world.tscn

+ 9 - 0
godot/component/entity/star/Star.gd

@@ -0,0 +1,9 @@
+extends PathFollow2D
+# a moving music player
+
+
+const SPEED = 200
+
+
+func _physics_process(delta):
+	progress += SPEED * delta

+ 10 - 0
godot/component/entity/star/Star.tscn

@@ -0,0 +1,10 @@
+[gd_scene load_steps=3 format=3 uid="uid://bs4hylgxwbr8y"]
+
+[ext_resource type="Script" path="res://component/entity/star/Star.gd" id="1_bl1jp"]
+[ext_resource type="Texture2D" uid="uid://3msj63yh4l36" path="res://icon.svg" id="1_l4sa7"]
+
+[node name="Star" type="PathFollow2D"]
+script = ExtResource("1_bl1jp")
+
+[node name="Sprite2D" type="Sprite2D" parent="."]
+texture = ExtResource("1_l4sa7")

+ 1 - 0
godot/project.godot

@@ -11,6 +11,7 @@ config_version=5
 [application]
 
 config/name="StarKiss"
+run/main_scene="res://world.tscn"
 config/features=PackedStringArray("4.0", "Mobile")
 config/icon="res://icon.svg"
 

+ 20 - 0
godot/world.tscn

@@ -0,0 +1,20 @@
+[gd_scene load_steps=3 format=3 uid="uid://bs8crkburdpjc"]
+
+[ext_resource type="PackedScene" uid="uid://bs4hylgxwbr8y" path="res://component/entity/star/Star.tscn" id="1_wa4bn"]
+
+[sub_resource type="Curve2D" id="Curve2D_dtvs1"]
+_data = {
+"points": PackedVector2Array(0, 0, 0, 0, 915, 227, 0, 0, 0, 0, 465, 410, 0, 0, 0, 0, 116, 294, 0, 0, 0, 0, 33, 85, 0, 0, 0, 0, 584, 207, 0, 0, 0, 0, 857, 161)
+}
+point_count = 6
+
+[node name="World" type="Node2D"]
+
+[node name="Lines" type="Node2D" parent="."]
+
+[node name="BassLine" type="Path2D" parent="Lines"]
+curve = SubResource("Curve2D_dtvs1")
+
+[node name="ProtoStar" parent="Lines/BassLine" instance=ExtResource("1_wa4bn")]
+position = Vector2(915, 227)
+rotates = false