Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Performance issues
#12
(25-01-2018, 03:32 PM)josemendez Wrote: Tethers ignore pinned particles, but there's a workaround: you could fix the pinned particles, add tethers, then unfix the particles. That should work.

However I still don't get why you go trough so much trouble just to anchor a particle. Simply creating a handle out of it will "promote" that particle to a GameObject, that you can move around, parent to other objects, etc. Pinning it to a rigidbody w/fixed joint seems a bit convoluted, specially since your rigidbodies do not rely on the rope to keep the appropriate distance between them (you're using joints for this, right?)

Since you have a chain of rigidbodies linked with joints and the rope is merely passive eye candy between each pair of bodies, simply creating handles and parenting them to the rigidbodies should suffice. The rigidbodies do not need to be aware of the rope's existence, so to speak, as they are already kept in place by spring joints.

To unfix a particle trough scripting, set its inverse mass to something larger than zero. The logic behind this is that a particle with zero inverse mass has infinite mass = cannot move at all. See the last bit of:

http://obi.virtualmethodstudio.com/tutor...icles.html

The specific function you want to use is Oni.SetParticleInverseMasses(solver, masses, particle count, offset);

Yes, i am in the process of switching to handles right now, i was just curious in the event that i would try to revisit fully simulated cords with properly configured tether constraints in the future. Also, when using handles, i'm assuming that you don't actually need an ObiRigidbody or ObiCollider on the object containing the handle?

By the way, is there any way of knowing whether a particular particle has a handle associated with it or not? What happens when the rope is re-initialized? Will the handle point to a non-existing particle? Also, one thing which i think you should fix is that whenever you create a new obi component (including the handle), it always ends up at the bottom of the hierarchy of the currently active scene, even if you're working in an entirely different scene. The preferred behavior would be if it was parented to the currently selected object (if there is one), as is the case with all unity objects created through the context menu. It would also be nice if the rope followed the spline while you were editing it (this would potentially make the resolution incorrect, but i think this would be acceptable as you can always re-initialize the rope to handle this). Having to redo 30 pin-constraints or fixed particles just because your rope is slightly out of alignment at one position is really tiresome. I'm also curious as to whether stitches persist after you've re-initialized any of the ropes.
Reply


Messages In This Thread
Performance issues - by khalvr - 24-01-2018, 04:00 PM
RE: Performance issues - by josemendez - 24-01-2018, 04:09 PM
RE: Performance issues - by josemendez - 24-01-2018, 04:24 PM
RE: Performance issues - by khalvr - 24-01-2018, 06:21 PM
RE: Performance issues - by josemendez - 25-01-2018, 10:10 AM
RE: Performance issues - by khalvr - 25-01-2018, 12:42 PM
RE: Performance issues - by josemendez - 25-01-2018, 01:24 PM
RE: Performance issues - by khalvr - 25-01-2018, 02:16 PM
RE: Performance issues - by josemendez - 25-01-2018, 02:35 PM
RE: Performance issues - by khalvr - 25-01-2018, 03:11 PM
RE: Performance issues - by josemendez - 25-01-2018, 03:32 PM
RE: Performance issues - by khalvr - 25-01-2018, 05:39 PM
RE: Performance issues - by khalvr - 26-01-2018, 01:09 PM