Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- public class MusicPlayer : MonoBehaviour
- {
- public static MusicPlayer theMusicPlayerObject = null;
- void Awake()
- {
- theMusicPlayerObject = this;
- GameObject.DontDestroyOnLoad(gameObject); // the gameObject inside the brackets is the Music player object
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement