Save & Load
Last updated
Last updated
To save and load a map in the editor simply click on the ... button in the top right corner of the TileWorldCreator component.
You can save and load a map at runtime using following code:
Make sure to have a reference to the TileWorldCreator component in the scene.
TileWorldCreator does not save the whole map array, it only saves the blueprint layer stack as well as the map data like width and height, this makes the size of the save file much smaller. By saving only the blueprint layer stack, it is also easy to re-generate the map by calling ExecuteAllLayers after loading is complete or simply use LoadBlueprintStackAndExecute
.
To build the map after loading, make sure to subscribe to the OnBlueprintLayersComplete event.
Example
Please have a look at the runtime editor demo as well.