// Get all player objects from the cloud.
    public static void GetAllData(bool runtime)
    {
        Debug.Log("<color=yellow>Retrieving all players from the Cloud.</color>");

        // Get all objects from table 'PlayerInfo'.
        CloudConnectorCore.GetAllTables(runtime);
    }
Example #2
0
 public static void GetData()
 {
     CloudConnectorCore.GetAllTables(true);
 }