Two updates to mention:
-
First, a new video has been added to the Wattage Tile Engine product page showing a game that is under development using the Wattage Tile Engine. Here is a link to the video: https://youtu.be/5IsXP8ARZiM
-
Second, the Wattage Tile Engine has been updated to include the all new RegionManager type. This new type enables the Wattage Tile Engine to handle environments which would otherwise be too large to load into RAM. This is handy when dealing with procedurally generated environments.
Applications can utilize the RegionManager by implementing two listener functions. One listener function is used to supply sub regions to the tile engine as they come into view and the other listener function is used to clean up regions which are no longer needed. Please see the usage guide in the links below for further details.
The API docs have been updated to document the new type, a usage guide has been added to the documentation, and an example project using the new RegionManager type is available. Please see the links below:
Documentation root (contains links to all example code and guides):
https://paulwatt526.github.io/wattageTileEngineDocs/
RegionManager API doc root:
https://paulwatt526.github.io/wattageTileEngineDocs/regionManager/type_regionManager.html
RegionManager Usage Guide:
https://paulwatt526.github.io/wattageTileEngineDocs/regionManager/usageGuide.html
RegionManager Example doc root:
https://paulwatt526.github.io/wattageTileEngineDocs/regionManagerExample.html
RegionManager Example Project: