source code below
` set up terrain
MAKE TERRAIN 1, "terraininGE.Paint"
POSITION TERRAIN 1, 50,50,50
`rem Position camera in center of terrain
make camera 1
point camera 1, 0, 0, 0
position camera 1, 50,51,40
` control the camera + GAME LOOP
do
if upkey()=1 then moveforward()
if downkey()=1 then movebackward()
if rightkey()=1 then turnright()
if leftkey()=1 then turnleft()
loop
` function section
function moveforward()
move camera 1, 0.1
endfunction
function movebackward()
move camera 1, -0.1
endfunction
function turnright()
turn camera right 1, 0.1
endfunction
function turnleft()
turn camera left 1, 0.1
endfunction
` ending the program
If escapekey()=1
end
endif
Every time I run it tells me the terrain could not load.
Can anyone help me with this
( If you have a problem with any pf your code feel free to put it here couse the subject is "GAME MAKING ERRORS AND AND SOULOTIONS")