Click or drag to resize
GameObjectFind Method
Find a child GameObject.

Namespace:  GeonBit.ECS
Assembly:  GeonBit (in GeonBit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public GameObject Find(
	string name,
	bool recursive = true
)

Parameters

name
Type: SystemString
Child GameObject name to look for.
recursive (Optional)
Type: SystemBoolean
If true, will also search inside children recursively.

Return Value

Type: GameObject
Child GameObject, or null if not found.
See Also