I'm using artemis-odb for my prototype. I have managed to get the "KryoArtemisSerializer" to work and serialize my world (or just a few selected entities). I now want to transmit this data to another peer (I am doing this with Kryonet). The de-serialize is working, the only problem I ran into is, that I can't seem to tell the "WorldSerializationManager" to update my entities instead of always creating them.
I use
world.getSystem(WorldSerializationManager.class).load(inputstream, SaveFileFormat.class);
to load the data from my byte input stream that was created by Kryo. Is there another way to de-serialize the entities and process them manually?!
Any insights highly appreciated!!