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

Method Float2

Source/Engine/Serialization/JsonWriter.cpp:71–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71void JsonWriter::Float2(const ::Float2& value)
72{
73 StartObject();
74 JKEY("X");
75 Real(value.X);
76 JKEY("Y");
77 Float(value.Y);
78 EndObject();
79}
80
81void JsonWriter::Float3(const ::Float3& value)
82{

Callers 2

SerializeMethod · 0.45
SerializeFunction · 0.45

Calls 2

RealFunction · 0.85
FloatFunction · 0.85

Tested by

no test coverage detected