diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-15 15:44:21 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-15 15:44:21 +0100 |
| commit | be7229f8d89304c8b11220197ed64fa4da7a51bf (patch) | |
| tree | 975dceaa7a99c8a4082f3750741f3e712c6d6f42 /modules/multiplayer/doc_classes | |
| parent | 92e9bcb63394ccadb7dbcf2911b8ee03c06f85fa (diff) | |
| parent | af28f87791ac4aed15d8f869876296febf5d5b58 (diff) | |
| download | redot-engine-be7229f8d89304c8b11220197ed64fa4da7a51bf.tar.gz | |
Merge pull request #81458 from dalexeev/doc-add-deprected-experimental-message
Documentation: Add support for deprecated/experimental messages
Diffstat (limited to 'modules/multiplayer/doc_classes')
| -rw-r--r-- | modules/multiplayer/doc_classes/SceneReplicationConfig.xml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/modules/multiplayer/doc_classes/SceneReplicationConfig.xml b/modules/multiplayer/doc_classes/SceneReplicationConfig.xml index 1a51e4b6e9..8b9203d316 100644 --- a/modules/multiplayer/doc_classes/SceneReplicationConfig.xml +++ b/modules/multiplayer/doc_classes/SceneReplicationConfig.xml @@ -51,20 +51,18 @@ Returns whether the property identified by the given [param path] is configured to be synchronized on spawn. </description> </method> - <method name="property_get_sync" is_deprecated="true"> + <method name="property_get_sync" deprecated="Use [method property_get_replication_mode] instead."> <return type="bool" /> <param index="0" name="path" type="NodePath" /> <description> Returns whether the property identified by the given [param path] is configured to be synchronized on process. - [i]Deprecated.[/i] Use [method property_get_replication_mode] instead. </description> </method> - <method name="property_get_watch" is_deprecated="true"> + <method name="property_get_watch" deprecated="Use [method property_get_replication_mode] instead."> <return type="bool" /> <param index="0" name="path" type="NodePath" /> <description> Returns whether the property identified by the given [param path] is configured to be reliably synchronized when changes are detected on process. - [i]Deprecated.[/i] Use [method property_get_replication_mode] instead. </description> </method> <method name="property_set_replication_mode"> @@ -83,22 +81,20 @@ Sets whether the property identified by the given [param path] is configured to be synchronized on spawn. </description> </method> - <method name="property_set_sync" is_deprecated="true"> + <method name="property_set_sync" deprecated="Use [method property_set_replication_mode] with [constant REPLICATION_MODE_ALWAYS] instead."> <return type="void" /> <param index="0" name="path" type="NodePath" /> <param index="1" name="enabled" type="bool" /> <description> Sets whether the property identified by the given [param path] is configured to be synchronized on process. - [i]Deprecated.[/i] Use [method property_set_replication_mode] with [constant REPLICATION_MODE_ALWAYS] instead. </description> </method> - <method name="property_set_watch" is_deprecated="true"> + <method name="property_set_watch" deprecated="Use [method property_set_replication_mode] with [constant REPLICATION_MODE_ON_CHANGE] instead."> <return type="void" /> <param index="0" name="path" type="NodePath" /> <param index="1" name="enabled" type="bool" /> <description> Sets whether the property identified by the given [param path] is configured to be reliably synchronized when changes are detected on process. - [i]Deprecated.[/i] Use [method property_set_replication_mode] with [constant REPLICATION_MODE_ON_CHANGE] instead. </description> </method> <method name="remove_property"> |
