- Making transform cards work as plane/region art in Planar Conquest (mobile Forge).

- Currently will show the cards untransformed on the plane selection screen and transformed on the multiverse/region screen.
This commit is contained in:
Agetian
2018-04-27 10:46:48 +03:00
parent d74c6a2e21
commit bc701fecb3
6 changed files with 29 additions and 3 deletions

View File

@@ -113,6 +113,11 @@ public class GuiDesktop implements IGuiBase {
return null; //TODO
}
@Override
public ISkinImage getCardArt(final PaperCard card, final boolean backFace) {
return null; //TODO
}
@Override
public ISkinImage createLayeredImage(final FSkinProp background, final String overlayFilename, final float opacity) {
final BufferedImage image = new BufferedImage(background.getWidth(), background.getHeight(), BufferedImage.TYPE_INT_ARGB);