Unity - Activating GameObjects - Unity - Game Engine
Code snippet using UnityEngine; using System.Collections; public class ActiveObjects : MonoBehaviour { void Start () { gameObject.SetActive(false); } } #pragma strict function Start () { gameObject.SetActive(false); } import UnityEngine import System ...
unity3d.com |