(31-03-2020, 10:31 AM)sadiq Wrote: Hi,
how do i change the specific rope particle position on RUNTIME?
i want to change particle position with mouse input.
thanks
Thanks Man. It's work.
(31-03-2020, 11:44 AM)josemendez Wrote: Hi,
This component works at runtime. You add it to a rope, then at runtime you can click on its particles and drag them around. Simple as that.
Can you describe your use case in more detail, and what things you've tried that did not work?
Thanks sir
It is working but sometimes rope breaks in pieces when i tried to pick and drag.
this method i am using in Picker drag event.
public void Drag()
{
solver.positions[this.GetComponent<ObiRope>().solverIndices[index]] = pos;
}
Kindly guide me.