Esempio n. 1
0
 // Download texture from Google Drive
 private void DownloadTexture(string id)
 {
     isDownloadind  = 1;
     requestTexture = GoogleDriveFiles.DownloadTexture(id, true);
     requestTexture.Send().OnDone += RenderImage;
 }
 private void DownloadTexture()
 {
     request = GoogleDriveFiles.DownloadTexture(fileId, true);
     request.Send().OnDone += RenderImage;
 }
Esempio n. 3
0
 void DownloadTexture(string fileId)
 {
     texReq = GoogleDriveFiles.DownloadTexture(fileId);
     texReq.Send().OnDone += RenderImage;
 }