SetAudioStreamPitch method

void SetAudioStreamPitch(
  1. AudioStreamD stream,
  2. double pitch
)

Set pitch for audio stream (1.0 is base level)

Implementation

void SetAudioStreamPitch(
  AudioStreamD stream,
  double pitch,
) => run(
  () => _debugLabels.SetAudioStreamPitch(stream, pitch),
  () => _flat.SetAudioStreamPitch(
    stream,
    pitch,
  ),
);