Angelscript addon Template Containers  2.31.0
STL container powerr for Angelscript
Serializer addon

About serializing with the official as addon: serializer

Serializing any c++ side objects with the serializer requires you to register some functions telling the serializer how to do it.

You can register the required functions for aatc containers with the following code:

#include "aatc.hpp"
CSerializer* my_serializer = new CSerializer();
aatc::serializer::Register(engine, my_serializer);
my_serializer->Store(my_module);
//Do_Things_Requiring_Script_Serialization()
my_serializer->Restore(my_module);
aatc::serializer::Cleanup(engine, my_serializer);
delete my_serializer;

You must have "aatc_CONFIG_USE_ASADDON_SERIALIZER" set to 1 in the config to have these functions available.