how i can make a scroll, example ebay products in Android
plase, I invoke prefabs as low in the scroll , just who in the application of ebay, as I can do the scroll , ( if it helps , I use Ngui for summoned items )
using UnityEngine;
using System.Collections;
public class Invoker : MonoBehaviour {
public GameObject Objeto;
// Use this for initialization
void Start () {
for (int Q=0; Q<10; Q++) {
Instantiate (Objeto, transform.position+=new Vector3(0,-0.35f,0), transform.rotation);
}
}
}
↧