Перейти к содержанию

Entity::data

Материал из RAGE MP Wiki Archive
Версия от 10:28, 30 апреля 2019; imported>RoboN1X
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This property is used to get or set entity data.

If you use setVariable you have to use getVariable to get results. e.g. You can't do entity.setVariable('foo','bar') and get the result with entity.data.foo as getter. You can do so clientside, but not serverside.

Property Type(s) & Attribute(s)

  • Getter - attribute should be in any format.
  • Setter - attribute should be in any format.

Example

The code below is an example about how to set a entity data by directly manipulating its "data" attribute.

Server-Side
entity.data.foo = bar;