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

Transform.Find()

时间:2019-07-31 18:41:10      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:generic   bug   using   com   mono   ons   orm   get   eric   

代码演示:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TransformFind : MonoBehaviour {

private Transform m_Transform;
private GameObject one;
private GameObject two;

void Start () {

m_Transform = gameObject.GetComponent<Transform>();
one = m_Transform.Find("D2").gameObject;
two = m_Transform.Find("D2/D3").gameObject;

Debug.Log(one.name);
Debug.Log(two.name);

}
}

--------------------- 

Transform.Find()

标签:generic   bug   using   com   mono   ons   orm   get   eric   

原文地址:https://www.cnblogs.com/ly570/p/11278020.html

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