Latest Threads |
can you remove particles ...
Forum: Obi Softbody
Last Post: aardworm
09-07-2025, 07:09 AM
» Replies: 0
» Views: 112
|
ObiRope Mesh Renderer
Forum: Obi Rope
Last Post: quent_1982
08-07-2025, 11:27 AM
» Replies: 4
» Views: 410
|
How to dynamically change...
Forum: Obi Rope
Last Post: quent_1982
08-07-2025, 06:34 AM
» Replies: 6
» Views: 553
|
Pipeline that bends
Forum: Obi Softbody
Last Post: josemendez
04-07-2025, 09:52 AM
» Replies: 13
» Views: 1,290
|
How to implement/sync Obi...
Forum: Obi Rope
Last Post: quent_1982
01-07-2025, 01:48 PM
» Replies: 2
» Views: 372
|
Collisions don't work con...
Forum: Obi Rope
Last Post: chenji
27-06-2025, 03:05 AM
» Replies: 3
» Views: 444
|
Force Zone apply differen...
Forum: Obi Rope
Last Post: chenji
26-06-2025, 11:41 AM
» Replies: 11
» Views: 1,240
|
Can I blend in and out of...
Forum: Obi Cloth
Last Post: josemendez
24-06-2025, 04:42 PM
» Replies: 3
» Views: 443
|
Using a rigidbody/collide...
Forum: Obi Cloth
Last Post: josemendez
24-06-2025, 09:29 AM
» Replies: 1
» Views: 257
|
Solver is too performance...
Forum: Obi Rope
Last Post: quent_1982
20-06-2025, 08:09 AM
» Replies: 40
» Views: 5,609
|
|
|
Simple Winch |
Posted by: gozda - 02-07-2021, 06:59 AM - Forum: Obi Rope
- Replies (1)
|
 |
Hi,
As I have read on this forum, obi rope is average for winches, because making it stiff requires a lot of calculations. Obi is more suitable in this case to use to draw a rope. I'm trying to do that too, just having some obi problems and need some help.
In my case obi is supposed to be a visualization but behave like a normal rope, i.e. fall to the ground, react with colliders, and change its length dynamically as the winch unfolds / winds up. But I ran into a few problems:
1.I don't know how to make the obi only 30cm long. Can it be so short? When I tried to do it, it got longer, or else
she made a lot of turns.
2.if the solver can be in the vehicle hierarchy, and some script would only adjust its rotation to be 0.0.0 (this is for the clear hierarchy)
3. i want that rope does not affect the hook or the vehicle at all
4. if it was stretched more, e.g. 40m, and stretched, the center of the rope did not fly around.
In fact, despite a few days of trying, the only thing I managed to achieve is to change its length and learn a little how it works at all. The examples provided by the package are more advanced than what I need and this is probably the problem.
What do I expect in response to these questions, as I would not like to ask a million other questions ...
a description of why it is impossible or if it is possible and how to achieve the things I asked about or how I can get around these problems
The best solution would be an example in the project, i.e. a short rope, grabs the end and unfolds, when I return to the source it does not curl but falls to the ground, the button causes the winding to occur. It doesn't even have to be influenced by physics on an object.
greetings
|
|
|
Remove Stitches/Stitcher From Cloth |
Posted by: Visitor245262 - 01-07-2021, 11:28 PM - Forum: Obi Cloth
- No Replies
|
 |
In v3.5 what is the correct process for removing stitches from the cloth? Then switching one cloth to a different solver? I only need one piece of cloth to simulate at a time after the stitch is removed.
1. To add the stitch I use:
plyStitcher.PullDataFromSolver ();
plyStitcher.AddStitch (61, 8);
plyStitcher.PushDataToSolver ();
2. To remove the stitch I use:
plyStitcher.PullDataFromSolver ();
plyStitcher.RemoveStitch (0);
plyStitcher.PushDataToSolver ();
plyStitcher.Actor2 = null;
plyStitcher.Actor1 = null;
3. To switch solvers I use:
ply2.RemoveFromSolver (null);
ply2.Solver = ply2Solver;
ply2.AddToSolver (null);
4. ply2.RemoveFromSolver (null) causes this error:
NullReferenceException: Object reference not set to an instance of an object
Obi.ObiStitcher.RemoveFromSolver (System.Object info) (at Assets/Plugins/Obi/Scripts/Actors/ObiStitcher.cs:203)
Obi.ObiStitcher.Actor_OnRemovedFromSolver (System.Object sender, Obi.ObiActorSolverArgs e) (at Assets/Plugins/Obi/Scripts/Actors/ObiStitcher.cs:156)
Obi.ObiActor.RemoveFromSolver (System.Object info) (at Assets/Plugins/Obi/Scripts/Actors/ObiActor.cs:342)
Obi.ObiCloth.RemoveFromSolver (System.Object info) (at Assets/Plugins/Obi/Scripts/Actors/ObiCloth.cs:224)
If I run RemoveFromSolver/AddToSolver code again it does work with no errors, so I must be missing a step somewhere but cant figure it out. Thanks!
|
|
|
hi, should I use obi rope for this type grappling system? |
Posted by: usemahrope88 - 01-07-2021, 06:25 PM - Forum: Obi Rope
- Replies (6)
|
 |
hello, thank you dev for your hard work, i own this asset and want to ask if remaking this style of grappling system is feasible/do-able making use of obi-rope?:
(huh? now that i look closely on second video, maybe this game already was using obirope?)
i was also looking at your other asset:
https://assetstore.unity.com/packages/to...tor-133620
is it better instead?
feature set i am looking at implementing:
1. dynamic stretch and reposition, with anchor (i guess this is removal and addition of active particles within chain??)
2. continuous collisions for arbitrary collision surfaces(tree, boat, box, character, bush, anything) with anchor (supporting wrapping and two points contact) (also operates while player moves about without going through terrain)
3. momentum/add force reactive (permit swinging, i guess i can apply force to mid point of rope and also end in intervals based on player input(maybe determine axis based on controller z, x, y, facing) and maximal incremented multiplier over a set predetermined limit, ex: mid/end point+0.1force, time step, +0.2, +0.3, +0.4 (not sure how to solve this yet)
uhh guess its easier than i thought, seems to already do most, im wondering though if using your asset (no source code for obirope) will be good for lifetime of a project like this? i wouldnt need source code in the future if i simply make use of rope property?
i could implement a simplistic solution myself but i just want to save time but dont want to be stuck later. but then again i can just use your system for certain parts of my grappling system and then add on custom code for specific use, not a issue either way just curious (also i have no time to edit source code anyway just like having the option to extend functionality and make use of api, not really modify just addition libs)
i think your asset is the fastest for this yes??
thank you again for hard work on this great job, i am also considering to get obi cloth but i will wait and see if i can use it (for dynamic flags)
|
|
|
Local space simulation |
Posted by: ikostyakov - 29-06-2021, 12:50 PM - Forum: Obi Rope
- Replies (6)
|
 |
Hello!
I have object structure like this
ParentObject
---Obi Solver
------Obi Chain
---ChainBall
---ChainHandle
Then I move Parent object Obi Chain's physics works. I want physics only then I move ChainBall or ChainHandle. Is it any way to do it?
Thank you!
|
|
|
Reducing Bounce/Spring Dampening |
Posted by: captainSoftbody - 29-06-2021, 11:33 AM - Forum: Obi Softbody
- Replies (3)
|
 |
Hi,
Im just learning about how to use your Softbody asset, really cool so far!!
Is it possible to increase the dampening of the shape constraint springs? I'm finding it hard to reduce the bounce of a softbody.
I tried using the Solver Dampening, but this is just slowing everything down, including falling speed.
Thanks for any advice!
|
|
|
Le Krock Mort - Only Femme | Music Video |
Posted by: lidiamartinez - 28-06-2021, 07:55 AM - Forum: Made with Obi
- Replies (2)
|
 |
Worthless Idea created this music video using Obi Fluids.
Here's the quote from the Reddit post:
"Decided to play around with Obi Fluid for a music video. The tool is amazing! All real-time using Unity Recorder. The artist was recorded on a green screen and I added a simple billboard script to it."
Thanks for sharing!
|
|
|
|