0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

子オブジェクトを一括で削除する(Unity2019.4.13f)

Posted at

目的

・子オブジェクトを一括で削除したいとき
・大量にインスタンス化したオブジェクト消したいとき

動作イメージ

ex11.gif

スクリプト

delete_all_children.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class delete_all_children : MonoBehaviour
{
    private void Start()
    {
        foreach (Transform n in this.gameObject.transform)
        {
            GameObject.Destroy(n.gameObject);
        }
    }
}

使用方法

消したい子オブジェクトの「親オブジェクト」にスクリプトをアタッチする。
(「動作イメージ」の場合は、「can_move_area」にアタッチする)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?