10 lines
130 B
C#
10 lines
130 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public class DisableOnAwake : MonoBehaviour
|
||
|
{
|
||
|
private void Awake()
|
||
|
{
|
||
|
base.gameObject.active = false;
|
||
|
}
|
||
|
}
|