Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tutorials/performance/using_servers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ Creating a sprite
This is an example of how to create a sprite from code and move it using the low-level
:ref:`CanvasItem <class_CanvasItem>` API.

.. note:: When creating canvas items using the RenderingServer, you should reset physics
interpolation on the first frame using
:ref:`RenderingServer.canvas_item_reset_physics_interpolation <class_RenderingServer_method_canvas_item_reset_physics_interpolation>`.
This ensures proper synchronization between the rendering and physics systems.

.. tabs::
.. code-tab:: gdscript GDScript

Expand Down
Loading