Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
71
void 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
81
void JsonWriter::Float3(const ::Float3& value)
82
{
Callers
2
Serialize
Method · 0.45
Serialize
Function · 0.45
Calls
2
Real
Function · 0.85
Float
Function · 0.85
Tested by
no test coverage detected