Posted: 3rd Oct 2021 16:52
So When my player sprite is on a slope he slides a little, real slow.

I was hoping to speed up this by somehow making my sprites friction nothing while on hills.

but there is no way to do this.

Here is how im loading my player

+ Code Snippet
Player_1=createsprite(players)
SetSpriteSize(Player_1,10,20)
SetSpritePositionByOffset(Player_1,400,40)
setspritephysicson(Player_1,2)
SetSpriteDepth(Player_1,0)
SetSpritePhysicsCanRotate( Player_1,0)	
SetSpriteShape( Player_1, 3 )
SetSpritePhysicsMass( Player_1, 4 )
SetSpriteGroup(Player_1,xe)
SetSpriteAnimation(Player_1,347,282,50)
SetSpriteVisible(Player_1,1)
Posted: 3rd Oct 2021 20:25
but there is no way to do this

Are you sure about that?

SetSpritePhysicsFriction()
Posted: 3rd Oct 2021 20:51
@GCH, check your PMs?
Posted: 4th Oct 2021 7:41
SetSpritePhysicsFriction()

I tried this before I asked, and I played with it and nothing changed so I was confused.

This is why I posted this, I searched for slope questions and did not fin a answer. I am not sure if I am using SetSpritePhysicsFriction properly.