Here is Snake 2007 II.
(well a demo)
I added quite a few effects to it,
I will just tell you that you use the arrow keys to move and try and collect the silver balls.
old picture:
New Picture:
(there are no outer walls but you can warp around!)
To Render the BackGround you see(golden)
use this code on the create actor event of your canvas actor,
- Code: Select all
float X, Y, SHADE;
for(X = 0; X < 36000; X++)
{
moveto(width / 2, height / 2);
SHADE = cos(X)*255;
setpen(SHADE, SHADE / 1.1, 0, 0, 1);
lineto(sin(Y) * width, cos(X) * width);
Y += .01;
}