Runtime modification
Runtime modification
In order to modify a map at runtime you'll have to add a paint generator to the blueprint layer you wish to modify.
Create a new
blueprint
layerName it:
Island
Add a
paint
modifier to the layer
You can now modify the layer by referencing the TileWorldCreator component and calling the ModifyMap method. See following example:
_layerName
The blueprint layer name which has the paint modifier you want to modify_x
The x position on the map_y
The y position on the map
Build the map
After modifying the map you need to execute the blueprint layer stack first, before executing the build layer stack to make sure all changes will be build. This can be done by using following code:
Normally the tile and object instantiation layers will only rebuild the parts(clusters) of the mesh, which have been changed.
Clear Map
To clear the paint layer at runtime simply use:
Fill Map
To fill a map use:
Copy Map
The copy map method works like the editor copy map functionality. It copies the last output to the paint modifier.
Runtime editor
Please also have a closer look at the 01_Runtime Editor
demo scene.
This scene uses all the basic map modifications, and is a great start for creating your own runtime editor.
Last updated