Gameobject Unity Setactive Code Example


Example 1: setactive unity


gameObject.SetActive(true);
gameObject.SetActive(false);

Example 2: doing void when gameobject setactive unity


void OnEnable() //This void works only when the script is enabled, but when the GameObject enables, the script does to so you can use for gameObject activating
{
Debug.Log("PrintOnEnable: script was enabled"); //Your code here
}

void OnDisable() //Same for the Disable function
{
Debug.Log("PrintOnDisable: script was disabled"); //Your code here
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable