添加音效
Posted huang--wei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加音效相关的知识,希望对你有一定的参考价值。
定义成方法:
using System.Collections; using System.Collections.Generic; using UnityEngine; public class AudioManger : MonoBehaviour { Audiosource au; public AudioClip[] clip = new AudioClip[3]; // Use this for initialization void Start () { au = GetComponent<AudioSource>(); } public void PlayFaShe() { au.clip = clip[0]; au.Play(); } public void PlayHit() { au.clip = clip[1]; au.Play(); } public void PlayOver() { au.clip = clip[2]; au.Play(); } // Update is called once per frame void Update () { } }
以上是关于添加音效的主要内容,如果未能解决你的问题,请参考以下文章