linkCross-Game Products/Data

If you have multiple games that share the same data (e.g. a hub world and minigames) you can link them together automatically using the parent game system.

Setting up game parenting

When you set the parent game ID for a game it will pull all of its API data from the parent game allowing you to share data across your games.

Types of data shared:

  • Products & Player Purchases

  • Player save data

  • Game wide save data

  • Leaderboards

  • Generated assets

If you only want to share some data (for example if you have separate xp systems for each game) you can prefix your save keys with the current game ID in code.

Use Game.get_game_id() to fetch the ID at runtime:

Migrating Data Between games

circle-exclamation

Last updated