DeltaVR/Assets/DontDestroy.cs
2022-06-29 14:45:17 +03:00

12 lines
201 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DontDestroy : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}