Profile Picture

Physics Self Mesh

Posted By Lord Ashes 5 Years Ago
You don't have permission to rate!
Author
Message
Lord Ashes
Lord Ashes
Posted 5 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)

Group: Forum Members
Last Active: Last Week
Posts: 1.3K, Visits: 1.6K
I am creating a Skeetball object. Part of the object is a board with holes in it. Since I want the Skeetball object to be physics enabled, I constructed the holes in the board at the mesh level instead of using opacity textures.
When I activate Physics on the object and then select Self Mesh, I see that the mesh lines properly wrap around the holes (i.e. recognize the mesh holes). However, when I run the project (Realtime or Frame) the physics enabled ball does not go through the hole. The physics act like the board does not have any holes. I have tried making the physics enabled ball much smaller than the hole (and ensured that it uses a Sphere mesh collider) but the results are the same. The wholes in the board act as if they are solid.

Any tricks to making this work correctly? Is there some settings I should ensure that I have set?

"We often compare ourselves to the U.S. and often they come out the best, but they only have the right to bear arms while we have the right to bare breasts"
Bowser and Blue, Busting The Breast
GOETZIWOOD STUDIOS
GOETZIWOOD STUDIOS
Posted 5 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)

Group: Forum Members
Last Active: 3 Years Ago
Posts: 1.2K, Visits: 7.2K
Could you share your scene ? Or a simplified scene showing the issue ?

--
guy rabiller | GOETZIWOOD STUDIOS
"N.O.E." (Nations Of Earth) Sci-Fi TV Show, Showrunner.

Lord Ashes
Lord Ashes
Posted 4 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)

Group: Forum Members
Last Active: Last Week
Posts: 1.3K, Visits: 1.6K
Below is a link to a project which demonstrates the problem. Please note that all contents in the project a (C)opyright by Lord Ashes with permission to use the contents only for diagnostic purposes to help resolve the issue. All other use of the contents is forbidden.

https://drive.google.com/open?id=1bhhJKNX4ftlZbouPXySJDQFhr8UJsYZR

When I apply a force to the ball, I generally get one of three behaviors:

1. The ball gets stuck in the ring area but does not "fall down" to rest on the ring.
2. The ball ends up resting on one of the rings but does not go through the hole.
3. The ring area is solid and the ball cannot enter it.

I also get different results depending if I am in Realtime or Frame mode.     



"We often compare ourselves to the U.S. and often they come out the best, but they only have the right to bear arms while we have the right to bare breasts"
Bowser and Blue, Busting The Breast
4u2ges
4u2ges
Posted 4 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)

Group: Forum Members
Last Active: Yesterday
Posts: 5.0K, Visits: 15.9K
Couple of notes.

1. For every physics enabled prop set the Collision Margin to minimum: 0.01  (This is a main problem)
2. Simplify the Backboard geometry. Take it to Blender. Do Limited Dissolve and then Triangulate faces.

Then vary initial force for the ball until you get it into the hole Smile








Edited
4 Years Ago by 4u2ges
GOETZIWOOD STUDIOS
GOETZIWOOD STUDIOS
Posted 4 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)Distinguished Member (8.7K reputation)

Group: Forum Members
Last Active: 3 Years Ago
Posts: 1.2K, Visits: 7.2K
@Lord Ashes
Yep, collision settings was the main issue and yes, when doing physics simulations the rule is to better have an homogeneous meshe(s) tesselation. Physics engines hate when they have to deal with both big and small polygons at the same time.
Also, always run your physics simulation "By Fame", never in "Realtime". Only once you have baked your physics simulation you can switch back to "Realtime".

--
guy rabiller | GOETZIWOOD STUDIOS
"N.O.E." (Nations Of Earth) Sci-Fi TV Show, Showrunner.

Lord Ashes
Lord Ashes
Posted 4 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)Distinguished Member (20.8K reputation)

Group: Forum Members
Last Active: Last Week
Posts: 1.3K, Visits: 1.6K
Thanks for your suggestions. I will give that a try.

I am familiar with the Triangulate (but seems I didn't apply it) but what, if I may ask, does the Limit Dissolve do?

"We often compare ourselves to the U.S. and often they come out the best, but they only have the right to bear arms while we have the right to bare breasts"
Bowser and Blue, Busting The Breast
4u2ges
4u2ges
Posted 4 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)Distinguished Member (20.6K reputation)

Group: Forum Members
Last Active: Yesterday
Posts: 5.0K, Visits: 15.9K
I am familiar with the Triangulate (but seems I didn't apply it) but what, if I may ask, does the Limit Dissolve do?         


Limited Dissolve arbitrary simplifies the mesh topology by getting rid of vertices and edges on planar faces. Most of the time it creates ngons.
That is why Triangulate Faces should be applied afterwards.
The reason I suggested it, is because overly complicated mesh (with holes) does not work well with Physics SelfMesh.
It might create some sort of abnormal partitions inside the hole preventing objects from going through.







Reading This Topic