diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-06 15:39:25 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-06 15:39:25 +0100 |
| commit | 9ad098f653748938b202dccccbbad3b767d2cf45 (patch) | |
| tree | d244defb4cfd5de6c4e2ae461b87c0cd8454fbb7 /modules/gdscript/doc_classes/@GDScript.xml | |
| parent | f50f968b8377946d1c64c33bf5128aad0c852971 (diff) | |
| parent | 31749de128e15fa883aaef8d7976bd7c2a2c26f1 (diff) | |
Merge pull request #72276 from dalexeev/gds-rpc-annot
GDScript: Better handling of `@rpc` annotation and autocompletion
Diffstat (limited to 'modules/gdscript/doc_classes/@GDScript.xml')
| -rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index 026b603683..e05b17168d 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -576,10 +576,10 @@ @rpc func fn(): pass - @rpc(any_peer, unreliable_ordered) + @rpc("any_peer", "unreliable_ordered") func fn_update_pos(): pass - @rpc(authority, call_remote, unreliable, 0) # Equivalent to @rpc + @rpc("authority", "call_remote", "unreliable", 0) # Equivalent to @rpc func fn_default(): pass [/codeblock] </description> |