if game object is active unity code example
Example 1: check if gameobject is active
if (gameObject.activeSelf)
{
// this happens when object is active
}
Example 2: how to check if an object is active in unity
if (myGameObject.activeSelf)
if (gameObject.activeSelf)
{
// this happens when object is active
}
if (myGameObject.activeSelf)