Earth_Watcher by Anonymous Coder4th Sep 2006 0:27
|
---|
Summary This is a simple little program that give you an idea how earth might look from space, don't laugh its my first one. Description this is basicly a little graphics program, but it dos allow you to zoom in Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com rem Earth Watcher load image "stars_1.bmp",1 backdrop on texture backdrop 1 load object "earth_2.x",1 load object "moon.x",2 position object 2,-1.2,.4,.8 scale object 2,22,22,22 main: turn object right 1,.3 turn object left 2,.2 if upkey()=1 then move camera -.1 if downkey()=1 then move camera .1 goto main |