前提・実現したいこと
unityで3種類の音をランダムに再生するプログラムを作っています。再生されたものをすべて順番に記録したいのですがconsoleに再生された回数しか表示されずに困っています。どのように書き換えたらいいでしょうか?
該当のソースコード
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RandomAudioPlayer : MonoBehaviour
{
private GameObject[] audioObjects;
void Start()
{
audioObjects = GameObject.FindGameObjectsWithTag("AudioObject");
}
void FixedUpdate()
{
var audioObject = audioObjects[Random.Range(0, audioObjects.Length)]; }
}
audioObject.GetComponent<AudioSource>().Play(); var audioSourceId = audioObject.GetComponent<AudioSourceID>().audioSourceID; Debug.Log(audioSourceId);
あなたの回答
tips
プレビュー