Need help to make player dont slide on slopes

how do i achieve that?

i’m using a first person setup (logic bricks)

what physic’s model are you using ?

if it’s character physic’s then make sure the collisions bounds tick box is NOT ticked, if that is ticked your character will slide all over.

If it is rigid body or dynamic, there should be an option called “damping”, bring up the “translation” value as much as you want, higher number = less sliding

An easy way to fix it, is to give the ground a friction of 1 and the player a friction of 1 as well. The friction setting should be in the physics settings or in the material settings.

Upbge don’t have physics options in the material tab.

counter forces when you stop, or make your own character behavior.
best is just to set the speeds,

x= 0
y= 0
z= own.localLinearVelocity.z

now add speed so it can move

if keydown:
y = 3

then set the speeds.

own.localLinearVelocity = [x,y,z]

this example will not have sliding, use it on a dynamic object.

ps you posted in the wrong section.

They are moved to physics panel.