rabidus-test/Assets/BNG Framework/Scripts/Utility/DestroyIfPlayMode.cs

15 lines
379 B
C#
Raw Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BNG {
public class DestroyIfPlayMode : MonoBehaviour {
// Start is called before the first frame update
void Start() {
Debug.Log("Should not exist in Play Mode. Destroying GameObject");
GameObject.Destroy(this.gameObject);
}
}
}