Just a quickie 2 questions:
Sync On: Sync Rate 60: Autocam Off
Make object cube 1, 10
position object 1, 460, 0, 0
make object sphere 2, 5
position object 2, 0, 0, 0
Position Camera 0, 0, - 60
Sync
do
`cls
x = Object Position x(2)
y = Object Position y(2)
z = Object Position z(2)
cubex = Object Position x(1)
cubey = Object Position y(1)
cubez = Object Position z(1)
`Gosub WASDControls
`Gosub MoveCube
Position Object 2, x, y, z
Position Object 1, cubex, cubey, cubez
Print "X: ", x
Print "Y: ", y
Print "Z: ", z
Print "Object X : ", Object Screen x(1)
Sync
`Cls
loop
1) as you can see by the rem'd out cls's i cant seem to get the text to "print" and have the 3d objects too. Not sure why this is, anyone got any tips because i seem to remember being able to do this a short while ago and now i have forgotton.
2) If the object(1) - the cube - is at x position 460 then how come it is at x position 3384 and off the screen. Surely looking at it on a 640 wide screen means that only if the object were close up, like right up to the screen and at x pos 640 or more then it would be off the screen. The further back you go along the y axis the more the object has to travel along the world x axis before it goes off screen as seen as the 640 wide extends outward in its field of view across the world. Even if Object Screen does not mean what i think it means (its position in relation to the screen) then it should still be on the screen and seen wouldnt it?
This is baffling me a bit and im sure if it were cleared up i would have a better understanding of some 3d things.