当前位置:   article > 正文

NO.49-------Unity播放背景音乐不受场景切换影响_unity让音乐不受场景跳转停止的代码

unity让音乐不受场景跳转停止的代码

原理就是在场景中放置一个预制体,设置标签为sound,挂载audio source组件,同时挂载一个场景切换时自身不会销毁的脚本。

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class dontdestroyme : MonoBehaviour {
  5. // Use this for initialization
  6. void Start () {
  7. DontDestroyOnLoad(this.gameObject);
  8. }
  9. // Update is called once per frame
  10. void Update () {
  11. }
  12. }

另外在摄像机上挂载一个音乐播放组件

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class bgsound : MonoBehaviour {
  5. public GameObject obje;
  6. GameObject obj=null;
  7. // Use this for initialization
  8. // Use this for initialization
  9. void Start () {
  10. obj = GameObject.FindGameObjectWithTag("sound");
  11. if (obj==null) {
  12. obj = (GameObject)Instantiate(obje); }
  13. }
  14. // Update is called once per frame
  15. void Update () {
  16. }
  17. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/123021
推荐阅读
相关标签
  

闽ICP备14008679号