メインコンテンツまでスキップ

プレイテスト - クラウドセーブ - (Unity モジュール)

Last updated on June 23, 2025

Test Cloud Saving Game Options

  1. Open the game in the Unity Editor and make sure to open the MainMenu.unity located in the Assets/Scenes/MainMenu.unity.

  2. Play the game and navigate to Help & Options > Options. Change the game option values such as SFX and BGM volume. When you close the menu, the game options will be saved to Cloud Save. You can also check the logs for confirmation:

    Play test preview Unity Byte Wars cloud save

    Get Player Record from Client successful.
    Save Player Record from Client successful.
  3. You can also verify the saved record using the Admin Portal. First, you'll need the player’s User ID. You can copy it from the game by going to the main menu, selecting Profile, and clicking the Copy User ID button.

  4. In the Admin Portal, navigate to Progression & Inventory > Cloud Save > Player Records. Click the dropdown next to the search box and select by User ID. Paste the Player ID/User ID from the previous step into the search box and press Enter. Then, click the View button to inspect the record details.


Test Deleting Cloud Game Options

While the Byte Wars options menu does not include a button to delete records, you can still test record deletion using code or the Admin Portal.

  1. You can call the DeleteUserRecord() function defined in the CloudSaveEssentialsWrapper_Starter class. Just pass in the record key you want to delete and a callback function to handle the result when the record is deleted successfully.

  2. As a game admin, you can also delete the Player Record via the Admin Portal. Log in to the Admin Portal and go to your game’s namespace dashboard. Then, navigate to Progression & Inventory > Cloud Save > Player Records. Click the dropdown next to the search box and select by User ID. Paste the Player ID/User ID you obtained earlier into the search box and press Enter. Click the View button to open the record details.

  3. On the record details screen, find the record you want to delete and click the Delete button to remove it.