랜덤 랜덤 뽑기 개발 노트 2 2021. 8. 10. 03:44 https://play.google.com/store/apps/details?id=com.greenapple.randomnumbergenerator 랜덤 수 뽑기 - Google Play 앱 랜덤한 수를 뽑아보세요! play.google.com 드디어 기획했었던 첫 광고 어플을 출시하게 되었다. 생각보다 애드몹에서 광고 승인을 받는 건 어렵지 않았다. 광고 삽입보다는 오히려 구글 플레이 스토어에서 앱 게시 승인을 기다리는 것이 더 오래걸렸다. 주말이 껴있어서 그런 거 같다. 다음은 뭘 만들까 [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.. 이전 1 다음 1/1