Page 1 of 1

Sliding down a slope

PostPosted: Sat Jan 12, 2008 4:48 pm
by Freddy
Does anyone know how to make an object slide down a sloped line smoothly? I will give 1 point to the first person with a good answer. :)

Re: Sliding down a slope

PostPosted: Sat Jan 12, 2008 5:45 pm
by Kalladdolf
try that turtorial:
slope.zip
(4.47 KiB) Downloaded 119 times

:D

Re: Sliding down a slope

PostPosted: Sat Jan 12, 2008 9:23 pm
by Freddy
Thanks! I never thought it would be so easy! :D

Re: Sliding down a slope

PostPosted: Sun Jan 13, 2008 12:36 pm
by Kalladdolf
n.p. :D

actually, found out about it when I was making a slide-thingy game and just played around with the values of physical response. I was amazed when I set the third number to two and my actor would just rush off the scene when I accelerated =D

Re: Sliding down a slope

PostPosted: Sun Jan 13, 2008 1:14 pm
by Bee-Ant
Or try this :
Player>Collision>Platform>
Code: Select all
if(slide==1)
{
    //Physical Response 1 1 1 1
}
if(slide==0)
{
    //Physical Response 1 1 0 0
}

Re: Sliding down a slope

PostPosted: Sun Jan 13, 2008 9:05 pm
by Freddy
I dont recall that sliding down a slope worked in the last version of GE.

Re: Sliding down a slope

PostPosted: Mon Jan 14, 2008 8:30 am
by Kalladdolf
It did!
without it I would've been lost!!!
=D
It worked several versions before.
Quite handy for racing games.