android - Libgdx Reading External Resources -
in desktop application can load texture this
texture texture = new texture(gdx.files.absolute("c:/picture.png"));
how can in android?
external relative sd card. this:
texture texture = new texture(gdx.files.external("picture.png"));
will in root of sd card.
Comments
Post a Comment