Component.GetComponentInChildren Manual     Reference     Scripting  
Scripting > Runtime Classes > Component
Component.GetComponentInChildren

function GetComponentInChildren (t : Type) : Component

Description

Returns the component of Type type in the GameObject or any of its children using depth first search.

Only active components are returned.

JavaScript
var script : ScriptName;
script = GetComponentInChildren(ScriptName);
script.DoSomething ();