![]() |
Softbody falls apart - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Softbody (https://obi.virtualmethodstudio.com/forum/forum-12.html) +--- Thread: Softbody falls apart (/thread-3502.html) Pages:
1
2
|
Softbody falls apart - facaelectrica - 24-06-2022 Not sure how to phrase it, some images to explain what I'm running into. I've created a relatively simple shape: [attachment=1427] Created a blueprint: [attachment=1428] But no matter what I do, even copying the values you've added to your objects when I run the game, it just falls flat (next to your example ball): [attachment=1429] Why doesn't it stay more solid? What values should I be looking at? And some additional questions about the workflow: 1) I don't quite get the advantages behind doing smaller or bigger particles besides having a more precise shape and what I assume are more expensive calculations. Do they affect the properties of the object? I read this paragraph but there aren't examples or anything precise about how it translates to practical examples: Higher resolution leads to more particles and clusters being generated, making it more difficult to keep their shape. So given the same solver settings, high-resolution softbodies will be softer than low-resolution ones. 2) What is the advantage between voxels or vertices when creating the blueprint? In my situation, I'm trying to get an object with an inner pocket to work as a softbody, so should I use vertices? I can still get some precision with voxels and increased resolution, is it preferable to go that way? 3) From what I understood, once the particles are generated, they will get connected (blue lines) between each other. Is there a way to control that level of connection? The ObiSoftBodySkinner has a "Skinning Max Distance", is that what it does? And if so, how can I visualize it? 4)Is it possible to visualize how the blueprint is being skinned in relation to the object(s) in the viewport? RE: Softbody falls apart - josemendez - 24-06-2022 (24-06-2022, 01:43 AM)facaelectrica Wrote: Not sure how to phrase it, some images to explain what I'm running into. How many substeps/iterations are you using? These largely determine the maximum stiffness the solver is able to reach while enforcing constraints. I'd start by cranking up the amount of substeps, that will make the softbody more solid. The manual contains a very in-depth explanation of how the engine works internally and how substeps/iterations affect the outcome: http://obi.virtualmethodstudio.com/manual/6.3/convergence.html Substeps can be found in the ObiFixedUpdater component, and shape matching iterations can be found in the ObiSolver's "Constraint settings" foldout menu. (24-06-2022, 01:43 AM)facaelectrica Wrote: 1) I don't quite get the advantages behind doing smaller or bigger particles besides having a more precise shape and what I assume are more expensive calculations. Basically the same as texture resolution, mesh resolution, etc: higher resolution = larger memory cost = larger runtime cost = more detail. lower resolution = less memory cost = less runtime cost = less detail. (24-06-2022, 01:43 AM)facaelectrica Wrote: Do they affect the properties of the object? I read this paragraph but there aren't examples or anything precise about how it translates to practical examples: Yes, they do. This is commonplace in all existing physics engines: the more objects you held together using constraints, the more work needs to be done to keep it all stiff. For instance if you create a stack of boxes in Unity, the more boxes you add to the stack the "springier" it will become. The reason why lies at the core of how physics engines work: when multiple objects (in Obi's case, particles, but could also be cubes, capsules, whatever) are constrained/attached to each other in any way, their positions/orientations must be corrected so that they meet these constraints. Corrections are propagated from each body to the surrounding ones, over multiple iterations. So if you have few objects (few particles), corrections can be propagated very far in few iterations as they only have to traverse a few objects to get from object A to a different object B. Because of this, all constraints can be 100% enforced and look rigid enough. If you have many objects, corrections need more iterations to reach from A to B because they must travel trough more objects. So you would need more iterations for constraint corrections to be propagated trough all objects and things to look rigid. As a result, given the same solver settings, high-resolution softbodies will be softer than low-resolution ones (because corrections need to travel trough more particles). Hope this made sense. ![]() (24-06-2022, 01:43 AM)facaelectrica Wrote: 2) What is the advantage between voxels or vertices when creating the blueprint? In my situation, I'm trying to get an object with an inner pocket to work as a softbody, so should I use vertices? I can still get some precision with voxels and increased resolution, is it preferable to go that way? They're just different methods. Voxel sampling ensures symmetric, more regular grid-like sampling. Does not guarantee particles to be placed exactly at vertex positions. Vertex sampling guarantees particles will follow mesh topology, and be placed at vertex positions. Does not ensure symmetry though. Btw, there's a known bug in vertex surface sampling. Replace the Initialize() method in Obi/Scripts/Softbody/Blueprints/ObiSoftbodySurfaceBlueprint.cs with this: Code: protected override IEnumerator Initialize() (24-06-2022, 01:43 AM)facaelectrica Wrote: 3) From what I understood, once the particles are generated, they will get connected (blue lines) between each other. Is there a way to control that level of connection? No, that's fully automatic since it depends on particle distribution/surface analysis. (24-06-2022, 01:43 AM)facaelectrica Wrote: The ObiSoftBodySkinner has a "Skinning Max Distance", is that what it does? And if so, how can I visualize it? ObiSoftbodySkinner skins a mesh to the softbody. By the time you skin the mesh, the softbody has already been created so skinning it has no impact on shape matching constraints (the blue lines connecting particles). It simply "glues" vertices to particles. The "skinning max distance" is the maximum distance between a vertex and a particle for the vertex to be skinned to the particle. This is run-of-the-mill linear blend skinning, works and behaves the same way as character skinning in any 3D animation program. (24-06-2022, 01:43 AM)facaelectrica Wrote: 4)Is it possible to visualize how the blueprint is being skinned in relation to the object(s) in the viewport? Not really, since Unity's SkinnedMeshRenderer does not have any built-in way to visualize skin weights. RE: Softbody falls apart - Anna7777 - 24-08-2022 (24-06-2022, 07:36 AM)josemendez Wrote: How many substeps/iterations are you using? These largely determine the maximum stiffness the solver is able to reach while enforcing constraints. I'd start by cranking up the amount of substeps, that will make the softbody more solid.I have the same problem and changing substeps values doesn't help. RE: Softbody falls apart - josemendez - 24-08-2022 (24-08-2022, 09:34 AM)Anna7777 Wrote: I have the same problem and changing substeps values doesn't help. Could you provide some more information? What does your softbody look like? What are the blueprint settings you're using? Just in case, make sure that shape matching constraints are globally enabled in the solver (under the "Constraints" foldout). Otherwise softbodies will just act as a bunch of independent particles as there's no constraints to hold them in place. RE: Softbody falls apart - Anna7777 - 24-08-2022 (24-08-2022, 10:21 AM)josemendez Wrote: Could you provide some more information? What does your softbody look like? What are the blueprint settings you're using?Softbody simulation blueprint Contsaints RE: Softbody falls apart - josemendez - 24-08-2022 (24-08-2022, 11:16 AM)Anna7777 Wrote: Softbody simulation Hi, I see you're using Obi 6.2 or older. In older versions, you need to manually adjust the soft cluster radius parameter in the blueprint to make sure no particles are left unlinked to their neighbors. See: http://obi.virtualmethodstudio.com/manual/6.2/softbodysetup.html Quote:If parts of your softbody are detaching from it at runtime, it means your cluster network is fragmented. Use a larger soft cluster radius to ensure all clusters overlap with each other. Enable the "Shape matching constraints" render mode in the Visualization foldout to get visual feedback on the shape matching cluster network of your softbody. Enable shape matching constraint rendering in the blueprint, and make sure particles are connected to each other. If they aren't, increase the cluster radius and regenerate the blueprint. In recent versions (6.3 and up), this is not necessary as cluster size/radius is automatically calculated. RE: Softbody falls apart - Anna7777 - 24-08-2022 (24-08-2022, 11:23 AM)josemendez Wrote: Hi,Ok, thx, I'll try. And one more question: is it possible to create balloon effect with soft body: when you squash from one end, other end swells up? RE: Softbody falls apart - josemendez - 24-08-2022 (24-08-2022, 12:10 PM)Anna7777 Wrote: Ok, thx, I'll try. Nope, softbodies do not preserve volume. That's doable using cloth and volume constraints, though: http://obi.virtualmethodstudio.com/manual/6.3/volumeconstraints.html RE: Softbody falls apart - Anna7777 - 24-08-2022 (24-08-2022, 12:47 PM)josemendez Wrote: Nope, softbodies do not preserve volume. That's doable using cloth and volume constraints, though:thx) RE: Softbody falls apart - Anna7777 - 07-09-2022 (24-08-2022, 12:47 PM)josemendez Wrote: Nope, softbodies do not preserve volume. That's doable using cloth and volume constraints, though:Hi. One more question is it possible to optimize that balloon softbody for mobile devices? Because now I have very poor performance on them. |