Well, I'm just finished reading through a dozen tutorials, and made lots of demo's. But, now that I'm trying something without a turorial, I hit a roadblock. Well...Kind of. It's an issue with the position camera.
Basically, I want to set the cameras position & point it to where I want before the looping begins. So, I do that.
position camera 5,5,-50
point camera 5,5,5
Now, if I place that before my loop, it will have seemingly no effect. (I compiled it a dozen times using various numbers, and I saw no difference.)
So now, if I place the same code in the loop, like so:
do
position camera 5,5,-50
point camera 5,5,5
loop
Doing that, it will position perfectly how I want it too. Now, for me, this isn't that bad, as I'm going to be constantly scrolling the camera, in which I'll replace the numbers with a variable. The question is more of; Why does it work like this? Why will it not position the camera if I place it before the loop?