dimforge / dimforge/bevy_rapier
Doc for Third person camera jitter problem
Open
- Dominant language
- Rust
- Stars
- 1.6k
- Forks
- 282
- PR merge metrics
- No merged PRs in 30d
Description
when using `CharacterController` and `Camera` follow the player (Third person camera), camera will jitter, same issue in [avina](https://github.com/Jondolf/avian/issues/211#issuecomment-1789342920)
this problem can fixed by add
```
.configure_sets(
PostUpdate,
TppUpdateSet
.after(PhysicsSet::Writeback)
.before(TransformSystem::TransformPropagate),
)
```
I think this solution should be in doc.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.