I just want a simple way to delay a while loop. I'm using C#. Here's my code:
while (value<101)
{
Debug.Log(value);
value = value + 10;
//delay here (that i don't know how to do)
}
I used a bit of google translate so the text might be bad.