美文网首页
二,设置转换父类

二,设置转换父类

作者: 菜鸟的笔记 | 来源:发表于2019-12-25 11:39 被阅读0次
    public GameObject A;
    public GameObject B;
    //使用 SetParent 函数
    A.transform.SetParent(B.transform);
    A.transform.SetParent(null);
    
    //使用 parent 
     A.transform.parent = B.transform;
    

    相关文章

      网友评论

          本文标题:二,设置转换父类

          本文链接:https://www.haomeiwen.com/subject/eaqcoctx.html