// Get a player object from the cloud.
    public static void RetrieveGandalf(bool runtime)
    {
        Debug.Log("<color=yellow>Retrieving player of name Mithrandir from the Cloud.</color>");

        // Get any objects from table 'PlayerInfo' with value 'Mithrandir' in the field called 'name'.
        CloudConnectorCore.GetObjectsByField(tableName, "name", "Mithrandir", runtime);
    }
 public static void grabPlayerData()
 {
     if (!Player.init)
     {
         finished4 = true;
         CloudConnectorCore.GetObjectsByField(PLAYER, "Name", "Joe", true);
         loaded = true;
     }
     else
     {
         finished4 = true;
         loaded    = true;
         loadVal   = true;
     }
 }