Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Transform.DetachChildren

Switch to Manual
public function DetachChildren(): void;

Description

Unparents all children.

Useful if you want to destroy the root of a hierarchy without destroying the children.

	transform.DetachChildren();
	Destroy(gameObject);

See Also: Transform.parent to detach/change the parent of a single transform.