so i am doing a short story game instead of q and a quiz master game,
and I needed a way to set a range in a not random way. I’m not sure if this will work later on in the game but this is what i came up with.
[Range(0, a)] int questionRange;
const int a = 0;
void Start()
{
int a = questions.Count;
}