![]() |
Manual tearing via cript - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Rope (https://obi.virtualmethodstudio.com/forum/forum-4.html) +--- Thread: Manual tearing via cript (/thread-186.html) |
RE: Manual tearing via cript - x-lab - 19-10-2017 (19-10-2017, 11:43 AM)josemendez Wrote: Hi,Yes, I'm using Tether Scale = 1.05 , Stiffness = 1 RE: Manual tearing via cript - josemendez - 19-10-2017 (19-10-2017, 12:13 PM)x-lab Wrote: Yes, Tethers should not be used with breakable rope, since they directly link together all particles in the middle of the rope with those at the ends. So if you break the rope, particles will still try to keep a certain distance to the end they're no longer connected to. This is quite probably the cause of the weird behavior. First try to disable them in editor and see if the behavior improves. If that's the case, you should just disable them the first time to call Tear(). RE: Manual tearing via cript - x-lab - 19-10-2017 (19-10-2017, 01:09 PM)josemendez Wrote: Tethers should not be used with breakable rope, since they directly link together all particles in the middle of the rope with those at the ends. So if you break the rope, particles will still try to keep a certain distance to the end they're no longer connected to. This is quite probably the cause of the weird behavior. Hi I tried 1- to disable the Obi Tether Constrains component from the chain = Tether constrains still appeared 2- Hit button Clear Tethers (The visualization didnt show tethered constrains) = When the chain breaks the weird behavior persists 3- Unticked "Enable" in the Tether Constrain Parameters of Obi Solver = weird behavior persists pd, i tried to remove Tethers via script. Is it possible to attach/instantiate a Handle at the end of the Teared ropes? that way I could attach a small rigid object and give a nice behavior without deleting Tether constrains RE: Manual tearing via cript - josemendez - 19-10-2017 (19-10-2017, 03:34 PM)x-lab Wrote: Hi I tried Hmm, that's weird. Have you tried enabling constraint visualization (the "visualize" checkbox in each constraint component) and see if there's any constraint still attaching both halves of the torn rope? Unless I'm misunderstanding something, I don't see how adding rigidbody at the end of the rope would help you get rid of the weird behavior... at most you could keep the end of the rope static, but the rest of it would keep flailing. Also try deactivating in the solver all constraints except distance constraints, then re-enable them one by one and see what's the one causing the issue. RE: Manual tearing via cript - x-lab - 20-10-2017 (19-10-2017, 04:13 PM)josemendez Wrote: Hmm, that's weird. Have you tried enabling constraint visualization (the "visualize" checkbox in each constraint component) and see if there's any constraint still attaching both halves of the torn rope? Hi, Yes, I hit the visualization box. They are not visible, but the behavior of the broken ropes act as if were Tether constrains.. Adding a rigidbody at the end oh the rope gives a behavior similar to the Chain Sample scene of Obi Rope. I chose to detach the chain from my zombie and place a rigidBody at the end of rope.. And not dealing with Tearing at all, it looks cleaner and more realistic. I'll add a video later, if it's of interest RE: Manual tearing via cript - josemendez - 20-10-2017 (20-10-2017, 11:14 AM)x-lab Wrote: Hi, Did you try to leave distance constraints only, and see if the problem persists? If constraints do not show up when visualized, it means they're not there (visualization grabs the active constraints only). It could be several other things: distance constraints clashing with particle collisions, bend constraints clashing with distance constraints... etc. That's why it is of interest seeing if distance constraints alone still cause the issue. RE: Manual tearing via cript - ctalDai - 31-07-2019 (09-10-2017, 02:13 PM)josemendez Wrote: This. I couldn't have explained it better.Hello. I am trying to do something similar. I could get the cloth to be torn on collision via script but not at the point of collision. How do I get the the constraint index from particle index or contact point of the collision? Code: private void HandleClothCollision(object sender, ObiSolver.ObiCollisionEventArgs e) The code I have included tears the cloth but not at the point of collision. Please Help. (31-07-2019, 06:48 AM)ctalDai Wrote: Hello.Nevermind figured out after spending some time in forum. ![]() Heres the working code. Code: private void HandleClothCollision(object sender, ObiSolver.ObiCollisionEventArgs e) Any ideas? RE: Manual tearing via cript - Sether - 15-01-2020 I'm trying to accomplish this same thing, however the advice given in the thread is out of date. I have a tearable cable with one end attached to an object with the other end dangling like a strand of hair. i call rope.tear(rope.elements[10]) and sure enough the new particle spawned does the infinite mass thing and falls away, with the rest of the now cut rope acting as still connected to the original rope. i would have expected it to cut and fall away as a whole piece of course. I've tried removing and re-adding the constraints before and after the tear (refactored from the code here to match the latest version of the asset) , but I cant seem to get a proper reference to the newly spawned infinite mass particle so i can assign the correct mass to it. Here's my cut method: Code: [ContextMenu("Test Cut")] i expect when this is figured out i will still need to fix the cut rope not falling away as well. any advice? Thank you! RE: Manual tearing via cript - zakur0 - 16-01-2020 Bump! If the rope tearing is automatic using tear resistances, is there an event or a way to figure out the particle indices where the cut occurred, so you can apply a texture to fill the rope from the inside? RE: Manual tearing via cript - josemendez - 16-01-2020 (15-01-2020, 04:09 PM)Sether Wrote: I'm trying to accomplish this same thing, however the advice given in the thread is out of date. I have a tearable cable with one end attached to an object with the other end dangling like a strand of hair. i call rope.tear(rope.elements[10]) and sure enough the new particle spawned does the infinite mass thing and falls away, with the rest of the now cut rope acting as still connected to the original rope. i would have expected it to cut and fall away as a whole piece of course. Hi there! In 5.0, you don't need to remove constraints before and add them after. A single call to RebuildConstraintsFromElements(); after tearing as many elements as you need will do. We still need to update the docs regarding this. Code: public class Tear : MonoBehaviour You can see an example of how its used in ObiRope's ApplyTearing() method, which is what is called each frame when automatic tearing is enabled. |