12 lines
202 B
C#
12 lines
202 B
C#
|
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
public class DisableOnStart : MonoBehaviour {
|
|||
|
|
|||
|
// Use this for initialization
|
|||
|
void Start ()
|
|||
|
{
|
|||
|
gameObject.SetActive (false);
|
|||
|
}
|
|||
|
}
|