Untitled

Anonymous
plain_text
12/29/2023 5:37 PM
304 B
35
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