this post was submitted on 08 Oct 2023
17 points (100.0% liked)

Godot

5334 readers
3 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

!roguelikedev@programming.dev

Credits

founded 1 year ago
MODERATORS
 

I am using Godot 4.1 and after I added the first rigidbodies to my game, I noticed the physics seem really unstable. The floor is a StaticBody with large and 1m thick BoxShape. I have RigidBody objects with simple BoxShape colliders and the thinnest side is 0.3m. Often when I knock them on the floor they do not come to rest, but keep vibrating indefinitely. They are not on top of each other, this happens when a single object is only on top of the static floor. Increasing physics ticks per second to 120 seems to help, but I am not sure how it affects performance and what will be my final targets. Is it normal for the physics to be so unstable and jittery in such a case I would assume to be very simple and mundane at 60 ticks per second?

you are viewing a single comment's thread
view the rest of the comments
[–] Walop@sopuli.xyz 1 points 9 months ago (1 children)

It's a bit hard to reliably reproduce, but when I knock down the boxes on their broad side, there's usually at least one exhibiting this behavior. https://github.com/Walop/godot-physics-glitch

[–] TsarVul@lemmy.world 1 points 9 months ago* (last edited 9 months ago) (1 children)

OK well you're not doing anything wrong. It's just that the default Godot physics server needs work. For what its worth, in this example that you've shown, the problem can be amended if you do the following:

  • In Project Settings -> Physics -> 3D

    • Set Time Before Sleep to 0.25 or lower.
    • Set Sleep Threshold Angular to 0.1.
  • You can also enable Continuous CD in the Rigid Bodies but that usually just helps with detecting collisions in fast-moving bodies.


Your other option is to replace the default GodotPhysics3D with another one, as has already been stated.

I wouldn't recommend submitting an issue to the developers. I'm pretty sure they're aware of the physics server shortcomings.

[–] Walop@sopuli.xyz 1 points 9 months ago

Ok, thank you. I'll look into those.