I am struggling to figure out how to move things on the screen without altering the view.
The code shows a simple setup: plane with some boxes and the camera down in among them like a FPS game.
My question, the plane/objects are at the top of the window, if I move the camera up in the Y direction, it just looks down on them rather than in the same plane as them. How can I move the whole set of things down to the bottom of the window rather than at the top?
SetWindowSize( 1024, 768, 0 )
SetVirtualResolution( 1024, 768 )
CreateObjectPlane(1,400,400)
SetObjectRotation(1,90,0,0)
FOr i= 2 to 10
CreateObjectBox(i,20,20,20)
SetObjectPosition(i,random(0,400)-200,10,random(0,400)-200)
SetObjectColor(i,random(0,200),random(0,200),random(0,200),255)
SetObjectLightMode(i,1)
next
SetCameraPosition(1,0,10,-200)
do
Sync()
loop