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

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy