GameObject.Instantiate(游戏体的实例化),角色的选择


using UnityEngine;
using System.Collections;

public class CharacterCreation : MonoBehaviour {
public GameObject[] CharacterPrefabs;
private GameObject[] CharacterGameObject;
public UIInput NameInput;
private int length;
private int SelectIndex=0;
// Use this for initialization
void Start () {
length = CharacterPrefabs.Length;
CharacterGameObject = new GameObject[length];
for (int i = 0; i < length; i++)
{ 
CharacterGameObject[i]=GameObject.Instantiate(CharacterPrefabs[i],transform.position,transform.rotation)as GameObject;
}
showGameObject();


}

注意


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM