14 lines
201 B
C#
14 lines
201 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace VRBeats
|
||
|
|
{
|
||
|
|
public class DontDestroyOnLoad : MonoBehaviour
|
||
|
|
{
|
||
|
|
private void Start()
|
||
|
|
{
|
||
|
|
DontDestroyOnLoad(gameObject);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|