Page 1 of 1

Meet The Smoogles

PostPosted: Sun Oct 31, 2010 6:58 pm
by olly2000
Here is a demo version of MeetTheSmoogles. It contains the first level of the game!

Re: Meet The Smoogles

PostPosted: Sun Oct 31, 2010 7:20 pm
by NERDnotGEEK
i love it, very well put together, very smooth :) 1 question, are you sopose to be able to fling yourself really high off of stairs? i found myself using it to just jump over the bad guys :)

Re: Meet The Smoogles

PostPosted: Sun Oct 31, 2010 8:19 pm
by olly2000
No, but it's not a big problem.if you know how to solve it tell me. :)

Re: Meet The Smoogles

PostPosted: Sun Oct 31, 2010 8:29 pm
by NERDnotGEEK
just put a limit on the players max yvelocity, and remember to add an if inthere somewhere to remove that limit when jumping of the bouncy things.
so like
if (bounce == 0)
{
if(yvelocity < -10)
{
yvelocity = -10;
}
}
then on collision with bouncy thing
bounce = 1;

and on collision with normal ground
bounce = 0;

somthing along those lines should work i think :)

Re: Meet The Smoogles

PostPosted: Sun Oct 31, 2010 8:32 pm
by olly2000
Thanks I will try this for the full version! :)

Re: Meet The Smoogles

PostPosted: Mon Nov 01, 2010 7:15 pm
by lcl
Awesome! :D
Very good work! :D

Btw, if you need help with scripting, you can ask me to help you, and I'll try my best. :D