I_wanna_be_a_Fox/Assets/Script/BGMControler.cs
Koha9 a80f3d6560 I wanna be a fox first commit.
Initial commit. Complete project for 'I Wanna Be A Fox' - a 2D scrolling game inspired by 'I Wanna Be The Guy'.
2024-02-22 07:27:59 +09:00

26 lines
415 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BGMControler : MonoBehaviour {
// Use this for initialization
public GameObject Sound;
private void Awake()
{
if (Sound)
{
DontDestroyOnLoad(this.gameObject);
}
}
void Start () {
}
// Update is called once per frame
void Update () {
}
}