save_data
Saves JSON-serializable game data for the player.
Signature
save_data
Saves JSON-serializable game data for the player.Signature
save_data(key: str, value: Any) -> NoneParameters
| Name | Type | Default | Description |
|---|---|---|---|
key | str | None | key argument for this API call. |
value | Any | None | value argument for this API call. |
Returns
NoneExample
from conjure import *
from conjure.platform import save_data
init_window(360, 640, "Platform")
print("save_data")See also
is_authenticatedget_usernameget_player_display_name
Return to the platform overview or continue with the quickstart.