Selaa lähdekoodia

:speaker: Randomize pitch

DricomDragon 2 vuotta sitten
vanhempi
commit
1402875aa9
2 muutettua tiedostoa jossa 6 lisäystä ja 1 poistoa
  1. 5 0
      godot/component/entity/star/Sound.gd
  2. 1 1
      godot/world.tscn

+ 5 - 0
godot/component/entity/star/Sound.gd

@@ -1,6 +1,10 @@
 extends AudioStreamPlayer2D
 
 
+const PITCH_MIN = 0.8
+const PITCH_MAX = 2.6
+
+
 func _ready():
 	trigger()
 
@@ -10,4 +14,5 @@ func _on_repeater_timeout():
 
 
 func trigger():
+	set_pitch_scale(randf_range(PITCH_MIN, PITCH_MAX))
 	play(0.0)

+ 1 - 1
godot/world.tscn

@@ -18,5 +18,5 @@ curve = SubResource("Curve2D_dtvs1")
 script = ExtResource("1_8gyrh")
 
 [node name="ProtoStar" parent="Lines/BassLine" instance=ExtResource("1_wa4bn")]
-position = Vector2(915, 227)
+position = Vector2(164, 1321)
 rotates = false