facebook twitter hatena line email

「Unity/Csharp/音」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(Admin がページ「UnityCsharp/音」を「Unity/Csharp/音」に、リダイレクトを残さずに移動しました)
(相違点なし)

2017年10月4日 (水) 18:09時点における版

SEを鳴らしてみる

  1. ObjectにAudioSourceをAddComponentする
  2. アサインしたAudioSourceのAudioClipにmp3音源をいれる
  3. 以下AudioScriptをオブジェクトに紐づける
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 public class AudioScript : MonoBehaviour {
	public AudioSource sound01;
	void Start () {
		sound01 = GetComponent<AudioSource>();
		sound01.Stop ();
		// sound01.Play (); // BGMの場合はこちら
		sound01.PlayOneShot(sound01.clip); // SEの場合はこちら(音を重ねることができる)
	}
	void Update () {
	}
}