Audio Source State

Audio Source has two states: Playing and Paused
Sounds also have cursor which shows the position at which we play the sound. Sound output always moves the cursor forwards.
Cursor position is always relative to start of the Audio Clip.

During Play the sound is producing output at its attached endpoint on the graph, if sound hasn't been attached manualy, it is directly producing output to Playback device through Audio Listener.

When sound enters Pause state its cursor is saved, so it can be seamlessly resumed later.

Below are methods which allow changing between the two states as well as modifying the cursor.
1000 miliseconds = 1 second

void Play();



Description

Play the sound from the beginning. Shift cursor at 0 and start output/playing.


Example:

AudioSource src = GetComponent<AudioSource>();
src.Play(); 

void PlayAt(u64 milisecondsFromStart);



Description

Set how many miliseconds from beginning to shift the cursor and start playing from there.


Example:

AudioSource src = GetComponent<AudioSource>();
src.PlayAt(1000);   //Go to 1 second and start playing
src.PlayAt(3500);   //Go to 3.5 second of clip and play sound

void RewindTo(u64 milisecondsFromStart, bool autoResume /*= true */);



Description

Similar to PlayAt(), but allows control over whether to start playing audio or simply move cursor.


Example:

AudioSource src = GetComponent<AudioSource>();
src.RewindTo(2500); //Resume playing back(or forward) to second 2.5 of the audio clip.
//Move cursor to second 2.5

Example:

AudioSource src = GetComponent<AudioSource>();
src.RewindTo(3000, false);  //Stop audio output. Cursor is at second 3.
//After starting the sound again, it will play from second 3. 

void RewindToSeconds(float secondsFromStart, bool autoResume /*= true */);



Description

Set how many seconds from beginning to shift the cursor and depending on autoResume

  • true => start playing from there (default).
  • false => stop playing sound.

Example:

AudioSource src = GetComponent<AudioSource>();
src.RewindToSeconds(5.0f, false);   //Stop output and move cursor to second 5
src.RewindToSeconds(4.0f);   //Move cursor to second 4 and start output/play sound

void Stop();



Description

Stop audio output immediatly. Switches to Pause state.


Example:

AudioSource src = GetComponent<AudioSource>();
src.Stop(); 

void PauseAfter(u64 pauseTimeInMiliseconds /* = 0u */);



Description

Set time in miliseconds after which the sound should Pause


Example:

AudioSource src = GetComponent<AudioSource>();
src.PauseAfter(1500);   //Continue playing for 1.5 seconds and then stop

void PauseAfterSeconds(float pauseTimeInSeconds /* = 0.0f */);



Description

Set time in seconds after which the sound should Pause


Example:

AudioSource src = GetComponent<AudioSource>();
src.PauseAfterSeconds(6.3f);    //Continue playing for 6.3 seconds and then stop

void PauseFor(u64 pauseTimeInMiliseconds /* = 0u */);



Description

Set time in miliseconds for which the sound should be Paused, after this time passes, sound starts playing again.


Example:

AudioSource src = GetComponent<AudioSource>();
src.PauseFor(2000); //Immediately pause the sound for 2 seconds, 
//after 2 seconds playing resumes

void PauseForSeconds(float pauseTimeInSeconds /* = 0.0f */);



Description

Set time in miliseconds for which the sound should be Paused, after this time passes, sound starts playing again.


Example:

AudioSource src = GetComponent<AudioSource>();
src.PauseForSeconds(4.0f);  //Immediately pause the sound for 4 seconds, 
//after 4 seconds playing resumes