How to set godot server tick rate?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By luribert331

Hi!

In many multiplayer games you can set the tickrate of the game server. How can I do this in godot? Thanks!

Regards

:bust_in_silhouette: Reply From: Calinou

There is notion of server tick rate in Godot. However, if you send/receive network data in _physics_process(), then you can influence the rate at which this happens by setting Engine.iterations_per_second or adjusting Physics Fps in the Project Settings (the default is 60).