DeltaVR/Assets/_PROJECT/Scripts/DontDestroy.cs
2023-05-08 15:56:10 +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);
}
}