REM Project: Caverunner
REM Created: 01/10/2005 09:05:41
REM
REM ***** Main Source File *****
REM
autocam off
rem make the matrix
make matrix 1, 1000, 1000, 20, 20
randomize matrix 1, 50
rem scroll the landscape
do
shift matrix down 1
position camera 50, 40, 70
sync rate 10
UPDATE MATRIX 1
loop
do
if leftkey()=1 then z=z+1
if rightkey()=1 then z=z-1
 position camera 0, 0, z
loop