Files
2025-05-29 22:31:40 +03:00

10 lines
144 B
C#

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