using UnityEngine; using System.Collections; public class CharacterCreation : MonoBehaviour { public GameObject[] CharacterPrefabs; private GameObject[] CharacterGameObject; public UIInput NameInput; private int length; ; // Use this for initializati
调用其它组件中成员 通过GameObject(游戏物体). Base class for all entities in Unity scenes. 是Unity场景里面所有实体的基类. 可以理解为两个类间的访问,定义一个超类用其中一个类实现. 默认的gameObject为当前组件.transform为变换,有常用属性position(Vector3三维向量). 熟记transform下属性和方法作用. transform.translate() 平移,给定vector3,给定坐标系'物体坐标
在Unity3D中没有提供直接的方法获取某个GameObject的子GameObject,但是所有的GameObject都有transform对象,所以,一般是通过获取子GameObject的transform来达到遍历子GameObject的目的.官网手册中“Transform”页面给出了如下示例代码: using UnityEngine; using System.Collections; public class example : MonoBehaviour { void Example
GameObject.Find 查找 static function Find (name : string) : GameObject Description描述 Finds a game object by name and returns it. If no game object with name can be found, null is returned. If name contains a '/' character it will traverse the hierarchy
在后台对GameObject进行"创建"||"删除"动作 建立 public GameObject Pre;//在编辑器中用来绑定的Prefabs public Transform _puzzle1;//节点,要将新建的放到这个下面的 GameObject a = (GameObject)Instantiate(Pre);//创建了 a.transform.parent = _puzzle1.transform;//设置新建的位置,在_puzzle1这个节点下 a.