UxrComponent<TP, TC>.GetParentChildren Method

Gets the children from a specific parent.

Namespace: UltimateXR.Core.Components
Assembly: UltimateXR (in UltimateXR.dll) Version: 0.0.0.0

Syntax

C#

public static IEnumerable<TC> GetParentChildren(
	TP parent,
	bool includeDisabled = false
)

Parameters

 

parent
Type: TP
Parent to get the components from
includeDisabled (Optional)
Type: System.Boolean
Whether to include disabled components or not

Return Value

Type: IEnumerable(TC)
Components meeting the criteria

Remarks

When using the includeDisabled parameter, components that have never been enabled are not returned. Components are automatically registered through their Awake() call, which is never called if the object has never been enabled. In this case it is recommended to resort to GetComponentsInChildren``1(Boolean).

See Also

Reference

UxrComponent<TP, TC> Class
UltimateXR.Core.Components Namespace