码迷,mamicode.com
首页 > 其他好文 > 详细

AddChild

时间:2014-06-07 00:16:30      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
using UnityEngine;
using UnityEngine;
using UnityEditor;
using System.Collections;
 
 
public class AddChild : ScriptableObject
{
 
    [MenuItem ("GameObject/+Add Child")]
    static void MenuAddChild()
    {
        Transform[] transforms = Selection.GetTransforms(SelectionMode.TopLevel | SelectionMode.OnlyUserModifiable);
 
        foreach(Transform transform in transforms)
        {
            GameObject newChild = new GameObject("_null");
            newChild.transform.parent = transform;
        newChild.transform.localPosition = Vector3.zero;
        }
 
    }
 
}
bubuko.com,布布扣

 

AddChild,布布扣,bubuko.com

AddChild

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/softimagewht/p/3765396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!