I desire to write text to a new line in every loop currently it just writes on line 1, Is there a way I can write from line “i” … I’d look this up but To be honest I don’t know what to look for.
IEnumerator PrintText()
{
for (int i = 0; i < lines.Length; i++)
{
yield return new WaitForSeconds(1);
textField.text = lines *+ "
";*
}
}