get all gameobjects with component unity code example
Example 1: unity find all objects with script
public void GetAllObjectsWithScript() {
ScriptName[] list = FindObjectsOfType(typeof(ScriptName)) as ScriptName[];
foreach(ScriptName obj in list) {
// Do whatever
}
}
Example 2: unity get all gameobjects
//Get's all gameobjects and puts it in a list called "GameobjectList"
Object[] GameobjectList = Resources.FindObjectsOfTypeAll(typeof(GameObject));
Example 3: unity get all components in gameobject
GetComponents<Component>()