the spinning cube change my life !!!!!! by Anonymous Coder14th Mar 2007 16:47
|
---|
Summary el cubo giratorio canbio mi vida, ahora peso 20k menos !!! Description la iexsorable ganas de vivir de un cubo lo hace girar Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com REM Project: mi primer cubo giratorio REM Created: 14/03/2007 21:52:24 REM REM ***** Main Source File ***** REM if check display mode(1024,768,32)=1 set display mode 1024,768,32 endif ink 0x88FFFFFF,0 set text font "Tahoma" set text size 32 set text transparent sync on : sync rate 60 : hide mouse load image "gian.jpg",1 color backdrop &h00aa make object cube 1,100 texture object 1,1 do: rotate object 1,object angle x(1)+0.1,object angle y(1)+0.2,object angle z(1)+0.3 center text screen width()/2,screen height()-50,"Este es mi primer cubo giratorio !!!!" sync loop |