9 lines
135 B
C#
9 lines
135 B
C#
using UnityEngine;
|
|
|
|
public class DisableOnAwake : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
base.gameObject.SetActive(false);
|
|
}
|
|
}
|