10 lines
139 B
C#
10 lines
139 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public class DisableOnStart : MonoBehaviour
|
||
|
{
|
||
|
private void Start()
|
||
|
{
|
||
|
base.gameObject.SetActive(value: false);
|
||
|
}
|
||
|
}
|