2023-10-01 21:50:12 -04:00

9 lines
135 B
C#

using UnityEngine;
public class DontDestroy : MonoBehaviour
{
void Awake()
{
DontDestroyOnLoad(gameObject);
}
}