Quote:
An example, for a camera movement code i assumed that just a while loop that adds one to each camera axis would be sufficient to move from point a to b smoothly.

But it wasn't


hmm i thought a while loop would of sufficed here.

Eg... To move an entity up in a smooth action...
Code:
while(1)
{
my.z +=1;
wait(1);
}