Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  The objects within the two solvers do not collide with each other.
#2
Hi!

(04-11-2024, 09:46 AM)ziziza93 Wrote: Is it possible to make the objects within these two solvers collide?

No, this is a basic consequence of how Obi is designed. Each solver performs its own simulation, so you cannot have actors in different solvers interact with each other. Just like you cannot have rigidbodies that belong to different PhysicsWorlds interacting with each other in Unity. Quoting the manual:

Quote:Each solver is completely independent from other solvers. Therefore, actors being updated by different solver won't interact / collide with each other. Only actors in the same solver will react to each other.


(04-11-2024, 09:46 AM)ziziza93 Wrote: It is unavoidable to split into two solvers because I need to adjust the scale for some objects.

Scaling solver != scaling object. When scaling a solver, you're scaling the simulation space. While this may yield the same result as scaling an object in some situations, it's generally not the same.

If your objects don't need to be scaled at runtime, you might be able to just use blueprints with different scale values for the same effect.

kind regards,
Reply


Messages In This Thread
RE: The objects within the two solvers do not collide with each other. - by josemendez - 04-11-2024, 12:46 PM