mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-15 16:48:00 +00:00
19 lines
256 B
C#
19 lines
256 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Utilities
|
|
{
|
|
|
|
public class DontDestroyOnLoad : MonoBehaviour
|
|
{
|
|
|
|
void Awake ()
|
|
{
|
|
if (null == this.transform.parent)
|
|
{
|
|
DontDestroyOnLoad (this.gameObject);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|