3d spinning cubes by Zombie 2024th Mar 2007 16:41
|
---|
Summary just something basic and easy for people to look at, could be used as a screensaver if another shape pattern was added. Description Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com sync on sync rate 60 hide mouse color backdrop 100 text 0,10,"Here is a collection of 3d cubes spinning." wait 5000 text 0,30,"So um...enjoy." wait 5000 cls make object cube 1,20 make object cube 2,20 make object cube 3,20 make object cube 4,20 do turn object left 1,1 pitch object up 1,2 turn object right 2,1 pitch object down 2,2 turn object left 3,1 turn object right 4,1 sync loop |