Tutorial Unity3D 5.1.1 Multiple Sounds AT ONCE on your Player is easy

Опубликовано: 09 Август 2026
на канале: Fusion Developer
9,037
115

Tutorial: Unity3D 5.1.1 https://pastebin.com/Fv1VNVSH
Multiple Sounds AT ONCE on your Player is easy to do, once you know how it's done.

Because of youtube, I can't put the greater than and less than symbols for "AudioSource" so instead I used ~~ for left side and ~ for right side.
Sorry, I can't control youtube.

//- For Playing Multiple Sounds At Once -//
public AudioClip audPickUp;
public AudioClip audWin;

//- Play sound -//
AudioSource audio = GetComponent~~AudioSource~();
audio.PlayOneShot(audPickUp);

//- Play sound -//
AudioSource audio = GetComponent~~AudioSource~();
audio.PlayOneShot(audWin);


//- https://pastebin.com/Fv1VNVSH -//
//- https://pastebin.com/u/bufohaktix -//
//- https://play.google.com/store/apps/de... -//