okm so Im makein' a simple litle program I ran into a problem. Once I use make camera(camera#) the backrop changes to green no matter what I try. Here's my code:
sync on
sync rate 32
autocam off
backdrop on
color backdrop RGB(0,0,0)
`camera setup's
cam1 = 1
make camera (cam1)
point camera (cam1),0,0,100
set current camera (cam1)
`make objects
cube1 = 100
make object cube (cube1),50
position object (cube1),0,0,100
`hide obejct (cube1)
while spacekey()=0
set cursor 0,0
CONTROL CAMERA USING ARROWKEYS (cam1),10,10
rotate object (cube1),0,rttmnt#,0
rttmnt#=rttmnt#+2
rttmnt#=WRAPVALUE(rttmnt#)
print rttmnt#
print "FPS:" : print screen fps()
sync
endwhile
Much thanks