while function unity code example
Example: unity while loop
//you can do:
int count = 0;
while(count < 10)
{
print("This text will run 10 times!!!, this is: " + count);
}
//for infinite loop (use update instead)
while(true)
{
print("Spam");
}