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
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)