bevy_rapier icon indicating copy to clipboard operation
bevy_rapier copied to clipboard

Doc for Third person camera jitter problem

Open alexniver opened this issue 1 year ago • 0 comments

when using CharacterController and Camera follow the player (Third person camera), camera will jitter, same issue in avina

this problem can fixed by add

  .configure_sets(
      PostUpdate,
      TppUpdateSet
          .after(PhysicsSet::Writeback)
          .before(TransformSystem::TransformPropagate),
  )

I think this solution should be in doc.

alexniver avatar Jul 17 '24 12:07 alexniver