Page 1 of 1

Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 3:44 pm
by Bee-Ant
Just mess around on a free time...
Well, you can call it 3D effect or something...enjoy :D

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 4:05 pm
by Hblade
Wow bee! :D NICE

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 5:04 pm
by Bee-Ant
Thanks....
But sorry if that jumping lines made you headache... :D
There, I have added the updated version...
Just add the vertical and horizontal lines inside the box.

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 5:13 pm
by Hblade
It didnt give me a headache :D But I tried the second demo and it looks amazing :3 How did you get the squares? O.o

Anyways, please check out my stuff in Game Dev :D

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 5:20 pm
by Bee-Ant
Hblade wrote:How did you get the squares? O.o

Global code -> Choose -> drawing
Not that complicated...you should be able to understand it :D

Game dev?

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 5:24 pm
by Hblade
Game Development xD

And thanks :D

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 5:31 pm
by Bee-Ant
Which stuff?
Link please?
There're so many of them...

Re: Bee-Ant's Pong

PostPosted: Tue Jun 01, 2010 6:00 pm
by Hblade
Sorry hehe... :3

The epic rain was awesome too but I lost the ged xD It was easy though. Collision - block thing - Specify 1, 1, - 1.4 1.4
It was that simple xD

Re: Bee-Ant's Pong

PostPosted: Wed Jun 02, 2010 9:19 am
by krenisis
Fantastic work thats what Iam talking about bee-ant just keep updating your game. Dont take this the wrong way but your ball movement needs to be fixed.

Re: Bee-Ant's Pong

PostPosted: Wed Jun 02, 2010 10:41 am
by Bee-Ant
Yeah, I know...
I implemented a real angle bouncing in there...
Code: Select all
angle=360-angle; //for horizontal rebound
angle=180-angle; //for vertical rebound

Without calculating the paddle speed, side, bounding angle...
It's too flat...hehe...just add
Code: Select all
+rand(20)-10;

In the end of the code to add a little bending :P
Thanks for the comment :D