Basically, gonna use this to post updates to a whip physics experiment. I like the idea of an indie jones style game, so I\'m gonna post some stuff here:
At the moment this just makes the building blocks with a for statement.
Rem Project: Whippy
Rem Created: Friday, July 16, 2010
Rem ***** Main Source File *****
Rem ***** vars
blobSpacing = 10
Rem Resolution//////////////////////////////////////////////////////////////////////////////////////5
rem Set default screen
color backdrop rgb(0,32,32)
set text font \"Verdana\"
ink rgb(0,255,0),0
set text to bold
set text size 52
sync on : sync rate 0
if check display mode(1024,768,32)=1
set display mode 1024,768,32
endif
Rem Main Camera//////////////////////////////////////////////////////////////////////////////////////5
autocam off
make camera 1
set current camera 1
position camera 1, 0,0,-2000
point camera 1, 0,0,0
Rem Images//////////////////////////////////////////////////////////////////////////////////////
load image \"brown_leather_texture.jpg\",1
Rem Whip object//////////////////////////////////////////////////////////////////////////////////////
make object cube 1, 10
position object 1, 0,0,0
texture object 1, 1
for n =2 to 99
make object cylinder n, 10
texture object n, 1
zrotate object n, 90
//xpos = object position x(n)
inc xposDelta, blobspacing
move object down n, xposDelta
next n
//////////////////////////////////////////////////////////////////////////////////////////////////////
do
sync
loop
end