Реализация случайной высоты звука (в том числе и для звуков ходьбы).

This commit is contained in:
Евгений Титаренко 2024-08-17 17:30:36 +03:00
parent 7ca54bdb38
commit fec3f22665
3 changed files with 8 additions and 0 deletions

View file

@ -58,6 +58,9 @@ layout_mode = 2
[node name="Footsteps" parent="." instance=ExtResource("5_wnylg")]
Timeout = 0.2
RandomPitch = true
PitchStart = 0.75
PitchEnd = 0.9
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="Footsteps"]
stream = ExtResource("5_2q34s")

View file

@ -38,6 +38,7 @@ size = Vector2(32.75, 104)
size = Vector2(640, 24)
[sub_resource type="AudioStreamPlaylist" id="AudioStreamPlaylist_7838k"]
fade_time = 1.0
stream_count = 1
stream_0 = ExtResource("6_jvwn3")

View file

@ -14,6 +14,9 @@ public partial class AudioCollection : Node
[Export] public bool Shuffle = false;
[Export] public double Timeout = 0;
[Export] public bool RandomPitch;
[Export] public float PitchStart;
[Export] public float PitchEnd;
private State _state;
@ -66,6 +69,7 @@ public partial class AudioCollection : Node
{
case State.Ready:
var player = GetChild<AudioStreamPlayer>(_currentChild);
player.PitchScale = RandomPitch ? _rng.RandfRange(PitchStart, PitchEnd) : 1;
player.Play();
_state = State.Playing;
_currentChild = Shuffle ? _rng.RandiRange(0, _count) : 0;