Вот сам код, оно вроде бы должно рандомный объект включать, но почему-то по очереди всё
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class LevelPlay : MonoBehaviour
{
public bool isDead = false;
public GameObject[] OnButtons;
public bool IsStart = false;
IEnumerator LevelStart()
{
while (isDead == false)
{
yield return new WaitForSeconds(0.5f);
int rnd = Random.Range(0, 215);
OnButtons[rnd].SetActive(true);
}
}
private void Start()
{
StartCoroutine(LevelStart());
}
}