We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I am a newbie in C++ and everything...
Could I use this library to serialize my class with some complex data like :
struct BoneNode { std::string name; glm::mat4 transMatrix; std::vector<BoneNode> children; int meshBoneId = -1; int nonMeshBoneId = -1; };
and
std::unordered_map<std::string, size_t> boneExMap ?
std::unordered_map<std::string, size_t> boneExMap
The loading speed of FBX is driving me crazy and forcing me to learn some new words like "binary files" and "serialize"...
And sorry for my poor English...
The text was updated successfully, but these errors were encountered:
Hi!
Recursive types are supported. Here's an example based on your code: https://godbolt.org/z/K1WbMdKno
Cheers, Corey
Sorry, something went wrong.
No branches or pull requests
Hi, I am a newbie in C++ and everything...
Could I use this library to serialize my class with some complex data like :
and
std::unordered_map<std::string, size_t> boneExMap
?The loading speed of FBX is driving me crazy and forcing me to learn some new words like "binary files" and "serialize"...
And sorry for my poor English...
The text was updated successfully, but these errors were encountered: