enum RTTIFieldFlag

Various flags you can assign to RTTI fields.

Values

NameValueDescription
WeakRef 1 This flag is only used on field types of ReflectablePtr type, and it is used to solve circular references.
SkipInReferenceSearch 2 This flags signals various systems that the flagged field should not be searched when looking for object references.
Replicate 4 Lets the replication system know that this field should be monitored for changes and replicated across the network when changes are detected.
VarInt 8 If true, the integer will be encoded as a var-int during networking operations, in order to reduce its size.
SkipInDeltaCompare 16 When set, field will be skipped if performing delta generation through IDeltaHandler interface.
SkipInDeltaCopy 32 Similar to SkipInDeltaCompare, but extends to concept so a field is also skipped when a complete copy of the object is being serialized (i.e. not necessarily limited to IDeltaHandler).