For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cross-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

Parent Game ID field in game settings

When you set the parent game ID, the child game uses the parent's data store for the shared systems below.

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:

Use the same prefix for every read, write, migration, and portal edit of that key.

Migrating Data Between games

Last updated