MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Serialize

Function Serialize

Source/Engine/Serialization/Serialization.h:54–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 return !otherObj || v != *(bool*)otherObj;
53 }
54 inline void Serialize(ISerializable::SerializeStream& stream, const bool& v, const void* otherObj)
55 {
56 stream.Bool(v);
57 }
58 inline void Deserialize(ISerializable::DeserializeStream& stream, bool& v, ISerializeModifier* modifier)
59 {
60 v = stream.GetBool();

Callers 3

SerializeMethod · 0.70
SerializeMethod · 0.70
WriteMethod · 0.70

Calls 15

GuidMethod · 0.80
GetIDMethod · 0.80
BoolMethod · 0.45
IntMethod · 0.45
Int64Method · 0.45
UintMethod · 0.45
Uint64Method · 0.45
FloatMethod · 0.45
DoubleMethod · 0.45
StringMethod · 0.45
Float2Method · 0.45
Float3Method · 0.45

Tested by

no test coverage detected