浏览代码

:wrench: Make speed modifiable

DricomDragon 2 年之前
父节点
当前提交
bcf9a5f6cd
共有 2 个文件被更改,包括 4 次插入2 次删除
  1. 2 2
      godot/component/entity/star/Star.gd
  2. 2 0
      godot/levels/world.tscn

+ 2 - 2
godot/component/entity/star/Star.gd

@@ -3,9 +3,9 @@ extends PathFollow2D
 
 signal note_changed(new_note: Music.Note)
 
-const SPEED = 200
 const RAYON = 20
 
+@export var speed: float = 200.0
 @export var note: Music.Note = Music.Note.A
 
 
@@ -14,7 +14,7 @@ func _ready():
 
 
 func _physics_process(delta):
-	progress += SPEED * delta
+	progress += speed * delta
 
 func _draw():
 	draw_circle(Vector2.ZERO, RAYON, Color.WHITE)

+ 2 - 0
godot/levels/world.tscn

@@ -38,11 +38,13 @@ curve = SubResource("Curve2D_yypd3")
 
 [node name="ElioStar" parent="Lines/NiceLine" instance=ExtResource("1_wa4bn")]
 position = Vector2(1856, 320)
+speed = 400.0
 note = 4
 
 [node name="MiniStar" parent="Lines/NiceLine" instance=ExtResource("1_wa4bn")]
 position = Vector2(1354.86, 64)
 progress = 4210.26
+speed = 400.0
 note = 6
 
 [node name="Triggers" type="Node2D" parent="."]