I got some problem. I am trying to hide aGameObject using SetActive(false); But the object is still shown in the game.
Here is the code:
public class test : MonoBehaviour {
public GameObject a;
public GameObject b;
void Start () {
a.SetActive (false);
b.SetActive (false);
}
}