Hi I have a question regarding the ‘i’ in for loops for Iterator statements;
for (int i = 0; i < listLength; i ++ )
{
Debug.Log( i )
}
When does the i first change value? Because wouldn’t it change from 0 to 1 before it runs the next line of code. (As in wouldn’t i be changed to 1 before the loop has even gone through once-because the i++ is right at the top)
Thanks