User Data
Last updated
Last updated
Store and manage player data to enhance gameplay experience and retain progress.
There are two types of storage: LocalStorage
and PlatformInternal
. When writing to local storage, data is saved on the player's device. When writing to internal storage, data is saved on the platform's servers.
Identify the default storage type to understand where data is being saved (local or server).
Used automatically if a specific type is not specified when working with data. Possible values: LocalStorage
, PlatformInternal
.
Verify if the specified storage type is supported on the platform to ensure compatibility.
Ensure the platform supports the required features and storage types for proper functionality.
Check if the specified storage type is currently available for use to manage data storage effectively. Possible values: true
, false
.
Retrieve stored data based on a key or multiple keys to restore player progress or settings.
Save data to the specified storage with a key to retain player progress or settings.
Remove data from the specified storage by key to manage player data and settings effectively.