SetAudioStreamPitch method

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

Implementation

void SetAudioStreamPitch(
  AudioStreamD stream,
  num pitch,
) => run(
  () => 'SetAudioStreamPitch($stream, $pitch)',
  () => rl.Audio.SetAudioStreamPitch(
    rl.Temp.AudioStream$.Ref1(stream).ref,
    pitch.toDouble(),
  ),
);