From 31749de128e15fa883aaef8d7976bd7c2a2c26f1 Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Sun, 29 Jan 2023 00:21:27 +0300 Subject: GDScript: Better handling of `@rpc` annotation and autocompletion --- modules/gdscript/doc_classes/@GDScript.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/gdscript/doc_classes/@GDScript.xml') 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] -- cgit v1.2.3