Untitled

 avatar
unknown
plain_text
2 years ago
227 B
12
Indexable
using UnityEngine;
using System.Collections;
public class SpawnPuyo : MonoBehaviour {


    public Color[] randomPuyo;
    int puyoIndex;

	public void Start ()
    {
        puyoIndex=Random.Range(0, 4);
	}

}

Editor is loading...
Leave a Comment