BGField.cs -is a table field, which has its own type. The API list is not full.
Strictly speaking, each type has its own field. For example, BGFieldInt.cs - is a field of type int, etc. However, you do not have to know anything about these classes, all you need to know is field's type
Main API
Method/Property | Returns | Description |
---|---|---|
this[int entityIndex] | T | Get/Set value by entity index. This is the fastest method to get entity value. T means generic is used, so for int field- T meas int value, for long T means long etc. |
|
||
this[BGId entityId] | T | Get/Set value by entity id. This is much slower method, than getting value by entity Index. T means generic is used, so for int field- T meas int value, for long T means long etc. |
|