Better explanation for the replication interval and delta interval in the MultiplayerSynchronizer node
This commit is contained in:
parent
92e51fca72
commit
1fa02bdb9e
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@
|
|||
</methods>
|
||||
<members>
|
||||
<member name="delta_interval" type="float" setter="set_delta_interval" getter="get_delta_interval" default="0.0">
|
||||
Time interval between delta synchronizations. When set to [code]0.0[/code] (the default), delta synchronizations happen every network process frame.
|
||||
Time interval between delta synchronizations. Used when the replication is set to [code]On Change[/code]. A value of [code]0.0[/code] (the default) means that delta synchronizations happen every network process frame.
|
||||
</member>
|
||||
<member name="public_visibility" type="bool" setter="set_visibility_public" getter="is_visibility_public" default="true">
|
||||
Whether synchronization should be visible to all peers by default. See [method set_visibility_for] and [method add_visibility_filter] for ways of configuring fine-grained visibility options.
|
||||
|
@ -62,7 +62,7 @@
|
|||
Resource containing which properties to synchronize.
|
||||
</member>
|
||||
<member name="replication_interval" type="float" setter="set_replication_interval" getter="get_replication_interval" default="0.0">
|
||||
Time interval between synchronizations. When set to [code]0.0[/code] (the default), synchronizations happen every network process frame.
|
||||
Time interval between synchronizations. Used when the replication is set to [code]Always[/code]. A value of [code]0.0[/code] (the default) means that synchronizations happen every network process frame.
|
||||
</member>
|
||||
<member name="root_path" type="NodePath" setter="set_root_path" getter="get_root_path" default="NodePath("..")">
|
||||
Node path that replicated properties are relative to.
|
||||
|
|
Loading…
Reference in a new issue