Beispiel #1
0
        private void GetAllPlayers()
        {
            Debug.Log("<color=yellow>Retrieving all players from the Cloud.</color>");

            // Get all objects from table 'PlayerInfo'.
            Drive.GetTable(_tableName, true);
        }
 private void RetrieveCloudData()
 {
     // Suscribe for catching cloud responses.
     Drive.responseCallback += HandleDriveResponse;
     // Make the query.
     Drive.GetTable(localizationTableName, false);
 }
Beispiel #3
0
 public void GetAllPhotos()
 {
     // Get all objects from sheet 'all_photos'.
     Drive.GetTable(AllPhotosSheet, true);
 }
Beispiel #4
0
 void GetMissingDates()
 {
     // Get all objects from sheet 'date_missing'.
     Drive.GetTable(DateMissingSheet, true);
 }
 public void GetAllPhotos()
 {
     // Get all objects from current sheet
     Debug.Log("*** Started GetAllPhotos() loading from '" + AllPhotosSheet + "' at " + System.DateTime.Now.ToLongTimeString());
     Drive.GetTable(AllPhotosSheet, true);
 }