Smooth ball rolling

Hello, I am making a bowling game and I already got the movement of the bowl but the bowl bounces sometimes on the plane. How can you fix this problem? https://launch.playcanvas.com/1110195?debug=true

Is it the plane? Do I have to make a code? :thinking:

@Saad_Haider, did you fix/workaround this?

I’m not sure, but think you can clamp the hight in the position vector?
clamp camera

Yes I got it fixed, here’s how:

this.entity.rigidbody.body.setContactProcessingThreshold(0.00001);

If the platform has a single long collider it shouldn’t jump and it only happens if you have a lot of small pieces of colliders and so when it goes from one collider to another collider, it jumps a little bit, but the above line should fix that problem.

4 Likes

Thanks @Saad_Haider! :slight_smile: (ps. thanks @Gurki too)

1 Like

Wait, I am having a problem when I put this.entity.rigidbody.body.setContactProcessingThreshold(0.00001); in my script.
Any ideas?

Hi @Gabriel_Dobrzynski! You have placed the line outside a function.

Thanks! :smiley: Just started coding!

1 Like