i3e-asg2/Assets/Scripts/PlayerDontDie.cs
2024-07-03 20:03:50 +08:00

22 lines
429 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerDontDie : MonoBehaviour
{
public static PlayerDontDie instance;
void Awake()
{
if (instance == null)
{
instance = this;
DontDestroyOnLoad(gameObject);
}
else if (instance != null && instance != this)
{
Destroy(gameObject);
}
}
}