Answers for "check if gamoebject is active unity"

C#
8

unity check if gameobject is active

// To check if a GameObject is active:
gameObject.activeSelf;
Posted by: Guest on March-08-2020
1

unity check gameobject active

if (gameObject.activeInHierarchy)
Posted by: Guest on May-29-2021

Code answers related to "check if gamoebject is active unity"

C# Answers by Framework

Browse Popular Code Answers by Language