[Unity] 배경 음악 랜덤 플레이
2019. 8. 11. 00:15
게임 플레이 시, 여러 개의 배경 음악을 랜덤으로 계속 플레이 하는 방법 스크립트 작성 using System.Collections; using System.Collections.Generic; using UnityEngine; public class BGMplayer : MonoBehaviour { public AudioClip[] Music = new AudioClip[4]; // 사용할 BGM AudioSource AS; void Awake() { AS = this.GetComponent(); } void Update() { if (!AS.isPlaying) RandomPlay(); } void RandomPlay() { AS.clip = Music[Random.Range(0, Music.Len..