Package com.badlogic.gdx.graphics
Interface Pixmap.DownloadPixmapResponseListener
-
- Enclosing class:
- Pixmap
public static interface Pixmap.DownloadPixmapResponseListenerResponse listener forPixmap.downloadFromUrl(String, DownloadPixmapResponseListener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddownloadComplete(Pixmap pixmap)Called on the render thread when image was downloaded successfully.voiddownloadFailed(java.lang.Throwable t)Called when image download failed.
-
-
-
Method Detail
-
downloadComplete
void downloadComplete(Pixmap pixmap)
Called on the render thread when image was downloaded successfully.- Parameters:
pixmap-
-
downloadFailed
void downloadFailed(java.lang.Throwable t)
Called when image download failed. This might get called on a background thread.
-
-