I am trying to make a 3d earth map and it shows me black screen for some reason. I have already imported the picture in media but the sphere still stay black.
and I got another question..
how can I make anything I make in DB pro into exe file ? is it only when I buy the full version or something ?
//Display setting
set display mode 1680, 1050, 32
Autocam off
sync on
sync rate 0
//Cube
make object sphere 1, 25
Color object 1, Rgb (128,64,73)
//Image
load image "earth.bmp",1
texture object 1,1
//Light
//make light 1
//Position light 1,0,50,0
color backdrop rgb(0,0,0)
set ambient light 100
color ambient light rgb(255,255,255)
//cam
Position camera 0,50,0
point camera 0,0,0
do
if DownKey()=1 then pitch object down 1,2
if UpKey()=1 then pitch object up 1,2
if RightKey()=1 then turn object right 1,2
if LeftKey()=1 then turn object left 1,2
sync
LOOP