We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 467799e + ac8ea10 commit 1830c32Copy full SHA for 1830c32
tutorials/performance/cpu_optimization.rst
@@ -270,8 +270,8 @@ that feature real-time player movement.
270
271
The solution to jitter is to use *fixed timestep interpolation*, which involves
272
smoothing the rendered positions and rotations over multiple frames to match the
273
-physics. You can either implement this yourself or use a
274
-`third-party addon <https://github.com/lawnjelly/smoothing-addon>`__.
+physics. Godot has built-in physics interpolation which you can read about
+:ref:`here<doc_physics_interpolation>`.
275
Performance-wise, interpolation is a very cheap operation compared to running a
276
physics tick. It's orders of magnitude faster, so this can be a significant
277
performance win while also reducing jitter.
0 commit comments