Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  issue with cloth collision
#6
Hi Daniel,

Just answered your email, pasting my answer here for future reference in case anyone else encounters the same issue. In few words, particles were so small that their mass was considered zero by the engine. Using sane mass values fixed the problem:

"Initial particle mass values are derived from their size, smaller particles having less mass.

Your particles are *so* small (the smallest ones have a radius of 0.0006 meters, that's half a millimeter) that the mass values given by default fall below the engine's Epsilon value: they basically have zero mass and the collision detection pipeline will ignore them. Luckily the fix is simple: enter the blueprint editor, and give your particles sane mass values. I used a value of 0.005 for the smallest ones and that worked well.

As a side note, your solver's sleep threshold value is also quite large for the size of the solver: most particles have so little kinetic energy they will fall under the sleep threshold and freeze constantly, I'd recommend using a sleep threshold of 1e-08 or smaller for working at such small scale."
Reply


Messages In This Thread
issue with cloth collision - by danazoid - 29-08-2022, 10:00 AM
RE: issue with cloth collision - by josemendez - 29-08-2022, 11:06 AM
RE: issue with cloth collision - by danazoid - 31-08-2022, 07:58 AM
RE: issue with cloth collision - by josemendez - 31-08-2022, 08:20 AM
RE: issue with cloth collision - by danazoid - 31-08-2022, 08:37 AM
RE: issue with cloth collision - by josemendez - 31-08-2022, 03:34 PM
RE: issue with cloth collision - by danazoid - 05-09-2022, 08:30 AM
RE: issue with cloth collision - by josemendez - 05-09-2022, 08:50 AM
RE: issue with cloth collision - by danazoid - 05-09-2022, 08:54 AM
RE: issue with cloth collision - by josemendez - 05-09-2022, 09:00 AM
RE: issue with cloth collision - by danazoid - 05-09-2022, 09:24 AM
RE: issue with cloth collision - by josemendez - 05-09-2022, 09:34 AM
RE: issue with cloth collision - by danazoid - 05-09-2022, 09:53 AM
RE: issue with cloth collision - by josemendez - 05-09-2022, 10:01 AM
RE: issue with cloth collision - by danazoid - 06-09-2022, 05:09 AM