Is there any way to save runtime-loaded assets to save data?
Our scenario:
We allow the player to load their own model asset for the player character in runtime (the character asset is in vrm format, which includes skeletal mesh and a bunch of other data). We want to save the loaded assets so the player doesn’t need to load them manually every time opens the game.
Issue:
Using the savegame class can only save metadata like names but not objects like skeletal meshes. We tried to save assets in the original VRM format but re-import them every time loading the save data just took away a too long time.
Long story short, is there any way to save assets like skeleton meshes that are loaded in runtime? It is similar to modding, and it is achievable in unity for sure. Just not sure how to do it in UE4.