using UnityEngine;
using System.Collections;
public class ResourcesLoadObj : MonoBehaviour
{
void Start()
{
foreach (Transform child in gameObject.transform)
{
Debug.Log("所有该脚本的物体下的子物体名称:"+child.name);
}
}
}