GetEntitySyncedData
Внешний вид
(перенаправлено с «NAPI.Data.GetEntitySyncedData»)
Gets entity data that was set via SetEntitySharedData.
Note that this data is in a different state than non-synced data that you set with SetEntityData (which is only available for the server). To get non-synced data, use GetEntityData instead.
Syntax
<syntaxhighlight lang="C#" >dynamic NAPI.Data.GetEntitySharedData(NetHandle entity, string key);</syntaxhighlight>
Required Arguments
- entity: parameter input should be in NetHandle type.
- key: parameter input should be in string type.
NOTE: This function returns data in dynamic type.
Usage example(s)
Example Description <syntaxhighlight lang="C#" >NAPI.Data.GetEntitySharedData(entity, key);</syntaxhighlight>