October 9, 201510 yr Struggling to figure this out, I know how to paint a tile on screen, but I am not sure how to paint the same position on the mini map. Can anyone help with this? Thanks
October 9, 201510 yr Author take a look at MiniMapTileDestination Thanks a lot! I've got it: if ( position.isOnMiniMap(getBot()) ){ MiniMapTileDestination miniMapTileDestination = new MiniMapTileDestination(getBot(), position); g.fill(miniMapTileDestination.getBoundingBox().getBounds2D()); }
October 9, 201510 yr miniMapTileDestination.getBoundingBox() works too g.draw(pos.getPolygon(getBot())); works for on screen
October 9, 201510 yr Author miniMapTileDestination.getBoundingBox() works too g.draw(pos.getPolygon(getBot())); works for on screen Thanks
Create an account or sign in to comment