-
-
Save twobob/45e1a46760a2a9791eac17376f425ff5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void GetComponentsInChildrenRecursive<T> (Transform parent, List<T> buffer) | |
where T : Component | |
{ | |
foreach (Transform t in parent) { | |
var c = t.GetComponent<T> (); | |
if (c) { | |
buffer.Add (c); | |
} | |
GetComponentsInChildrenRecursive (t, buffer); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment