SetObjectPropertyValue: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Server & Client|1.0}} {{FuncDescription|Sets a property value for this entity. Useful to store information for individual entities which can be accessed on cl...")
(No difference)

Revision as of 09:33, 11 September 2019

SetObjectPropertyValue

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Sets a property value for this entity. Useful to store information for individual entities which can be accessed on client and server and across different packages.

Syntax

SetObjectPropertyValue(object, PropertyName, Value, bSync)
Client Syntax
SetObjectPropertyValue(object, PropertyName, Value)

Parameters

  • object
    The object identifier
  • PropertyName
    Name of the property variable
  • Value
    Value can be a boolean, integer, float, string or table
  • bSync (optional)
    Enable automatic network sync for this property value.

Return Value

  • Returns true on success.

Example

__EDIT_ME__

See also

__EDIT_ME__