[Doc] Clarify the session-specific nature of RID and ObjectID

This commit is contained in:
A Thousand Ships 2024-06-15 13:15:15 +02:00
parent 71699e08c9
commit 6ab303cd76
No known key found for this signature in database
GPG Key ID: 2033189A662F8BD7
2 changed files with 2 additions and 0 deletions

View File

@ -693,6 +693,7 @@
<return type="int" />
<description>
Returns the object's unique instance ID. This ID can be saved in [EncodedObjectAsID], and can be used to retrieve this object instance with [method @GlobalScope.instance_from_id].
[b]Note:[/b] This ID is only useful during the current session. It won't correspond to a similar object if the ID is sent over a network, or loaded from a file at a later time.
</description>
</method>
<method name="get_meta" qualifiers="const">

View File

@ -6,6 +6,7 @@
<description>
The RID [Variant] type is used to access a low-level resource by its unique ID. RIDs are opaque, which means they do not grant access to the resource by themselves. They are used by the low-level server classes, such as [DisplayServer], [RenderingServer], [TextServer], etc.
A low-level resource may correspond to a high-level [Resource], such as [Texture] or [Mesh].
[b]Note:[/b] RIDs are only useful during the current session. It won't correspond to a similar resource if sent over a network, or loaded from a file at a later time.
</description>
<tutorials>
</tutorials>