Game Data
What is it?
For all scripts in the game to have access to all the same basic information on the game, such as what tiles and item are available to use.
Data Types
in the current version Game Data there are five different lists which contain data about the game.
- Custom Tile List - All the available tiles/blocks available in the game so that they can be saved and loaded.
- Ignore Tile List - All the tiles/blocks that should be ignored in the physics system.
- Interactable Tile Data List - All the tiles that can be interacted with in the game.
- Item List - All items in the game so that they can be saved and loaded.
- Crafting Recipe List - All crafting recipes in the game so that they can be loaded.
What Happens If You Don’t Update Your Game Data
If the Game Data is not updated regularly, it may result in inconsistencies within the game world. This can lead to issues such as missing tile types, unresponsive items, and outdated crafting recipes which could potentially disrupt the gameplay experience.