disable unity code example
Example 1: how to disable a gameObject unity c#
public GameObject gameObj;
gameObj.SetActive(true);
gameObj.SetActive(false);
gameObject.SetActive(true);
gameObject.SetActive(false);
Example 2: enabling and disabling components unity
component.enabled = false;
Example 3: disable a component unity
using UnityEngine;
using System.Collections;
public class EnableComponents : MonoBehaviour
{
private Light myLight;
void Start ()
{
myLight = GetComponent<Light>();
}
void Update ()
{
if(Input.GetKeyUp(KeyCode.Space))
{
myLight.enabled = !myLight.enabled;
}
}
}