GetEntitySyncedData: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "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...")
 
No edit summary
Line 1: Line 1:
Gets entity data that was set via [[SetEntitySharedData]].
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.
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==
==Syntax==

Revision as of 01:30, 27 November 2019

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

dynamic NAPI.Data.GetEntitySharedData(NetHandle entity, string key);

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

NAPI.Data.GetEntitySharedData(entity, key);