Best CustomPhysicalProperties for NO BOUNCE at all?

What is the best possible customPhysicalProperties if I want something to not bounce at all/not stick, basically a soccer net for a ball that makes the ball slow down and not bounce off the net parts

1 Like

It would be best not to use CustomPhysicalProperties for something like this, and you can’t do this with CustomPhysicalProperties either, to my knowledge.

If you are using linear velocity for the ball, you could simply detect if the ball hit the net, and then quickly decrease the velocity of it. The decrease rate would depend on the current velocity of the ball. I would use raycasting for detecting the collision, because .Touched can be unreliable with high speeds. I have no experience in this, so you’re probably going to get a better answer from someone else.

2 Likes

Turn on customPhysicalProperties. See that elastic weight and value? set elasticity to 0, and the weight to 100.


The elastic property is in the physical properties.

1 Like

Haha, I forgot about that property! Thanks for reminding me. This is definitely the best way to go OP.

1 Like