Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Finding last point of rope
#27
(19-11-2021, 10:22 AM)josemendez Wrote: Oh, ok. You can just remove the elements in the second piece, deactivating all particles referenced by these elements by calling rope.DeactivateParticle(index) and passing the index of the particle in the rope.
For Tearing Code :
Code:
        // check rope elements and tear the one that references this particle:
        foreach (var elm in actor.elements)
        {
            if (elm.particle2 == particleIndex)
            {
                actor.Tear(elm);
                actor.RebuildConstraintsFromElements();
                DeactivateTornParticles(particleIndex);
                break;
            }
        }


For deactivation of particles in second piece:
Code:
    private void DeactivateTornParticles(int particleIndex)
    {
        for(int i = particleIndex; i < rope.elements.Count; i++)
        {
            rope.DeactivateParticle(i);
        }
    }

rope doing something weird, its like trying attach the cut portion, stretches long
Reply


Messages In This Thread
Finding last point of rope - by srid96 - 15-11-2021, 07:36 AM
RE: Finding last point of rope - by josemendez - 15-11-2021, 08:40 AM
RE: Finding last point of rope - by srid96 - 15-11-2021, 09:08 AM
RE: Finding last point of rope - by josemendez - 15-11-2021, 09:21 AM
RE: Finding last point of rope - by srid96 - 15-11-2021, 03:35 PM
RE: Finding last point of rope - by josemendez - 15-11-2021, 03:39 PM
RE: Finding last point of rope - by srid96 - 15-11-2021, 03:42 PM
RE: Finding last point of rope - by josemendez - 15-11-2021, 03:47 PM
RE: Finding last point of rope - by srid96 - 16-11-2021, 08:30 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 08:39 AM
RE: Finding last point of rope - by srid96 - 16-11-2021, 09:10 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 09:48 AM
RE: Finding last point of rope - by srid96 - 16-11-2021, 10:39 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 10:49 AM
RE: Finding last point of rope - by srid96 - 16-11-2021, 10:57 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 10:59 AM
RE: Finding last point of rope - by srid96 - 16-11-2021, 11:18 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 11:22 AM
RE: Finding last point of rope - by srid96 - 16-11-2021, 11:42 AM
RE: Finding last point of rope - by josemendez - 16-11-2021, 11:44 AM
RE: Finding last point of rope - by srid96 - 18-11-2021, 02:39 PM
RE: Finding last point of rope - by josemendez - 18-11-2021, 02:48 PM
RE: Finding last point of rope - by srid96 - 18-11-2021, 04:07 PM
RE: Finding last point of rope - by josemendez - 19-11-2021, 09:06 AM
RE: Finding last point of rope - by srid96 - 19-11-2021, 10:14 AM
RE: Finding last point of rope - by josemendez - 19-11-2021, 10:22 AM
RE: Finding last point of rope - by srid96 - 19-11-2021, 11:29 AM
RE: Finding last point of rope - by josemendez - 19-11-2021, 11:43 AM
RE: Finding last point of rope - by srid96 - 19-11-2021, 11:54 AM
RE: Finding last point of rope - by josemendez - 19-11-2021, 12:24 PM
RE: Finding last point of rope - by srid96 - 19-11-2021, 01:39 PM
RE: Finding last point of rope - by josemendez - 19-11-2021, 02:22 PM
RE: Finding last point of rope - by srid96 - 19-11-2021, 06:45 PM