Actually, I've tried using all three of those commands to rotate the camera 90 degrees and 180 degrees (just to see if I could make any change) without success. I also tried "rotate camera" hoping that by specifying the value of each rotation I could get somewhere. Still nothing. Is there something wrong with my code?
set display mode 800,600,32
set window on
hide mouse : sync rate 60
make object box 1,30,5,5
clone object 2,1
make object sphere 3,5,50,50
xpos1#=0
xpos2#=0
position object 1,0,0,70
position object 2,0,0,-70
position camera 0,100,0
rotate camera 0,0,90
point camera 0,0,0
color object 1, rgb(255,0,0)
color object 2, rgb(0,0,255)
do
if upkey()=1 then if (xpos2# + 5)>=50 then xpos2# = xpos2# else xpos2# = xpos2# + 5
if downkey()=1 then if (xpos2# - 5)<=-50 then xpos2# = xpos2# else xpos2# = xpos2# - 5
if escapekey()=1 then exit
position object 1,0,0,50
position object 2,xpos2#,0,-50
sync
loop
'Just one game,' they said, and started to play. That was yesterday.
Dual Athlon 2.0/1GB RAM/GeForce Ti4200-128/Win2000 Pro