diff --git a/data.mv.db b/data.mv.db index 2ba5b45..6278241 100644 Binary files a/data.mv.db and b/data.mv.db differ diff --git a/iconsets/ddc1e14f-0d1f-4291-a29d-0dc5d8e9242b.png b/iconsets/ddc1e14f-0d1f-4291-a29d-0dc5d8e9242b.png new file mode 100644 index 0000000..a7b12ed Binary files /dev/null and b/iconsets/ddc1e14f-0d1f-4291-a29d-0dc5d8e9242b.png differ diff --git a/maps/f845355e-b9ad-4884-a217-dd3a4c18a3fa.dat b/maps/f845355e-b9ad-4884-a217-dd3a4c18a3fa.dat index 0df5ca0..e3cbdfc 100644 Binary files a/maps/f845355e-b9ad-4884-a217-dd3a4c18a3fa.dat and b/maps/f845355e-b9ad-4884-a217-dd3a4c18a3fa.dat differ diff --git a/project.bep b/project.bep index f2045dd..acd339f 100644 --- a/project.bep +++ b/project.bep @@ -26,4 +26,5 @@ $1311327d-4b74-4252-94da-23ee4129e357(1311327d-4b74-4252-94da-23ee4129e357.ogg $e452e215-f581-40fe-a5cf-f555d3db83b8(e452e215-f581-40fe-a5cf-f555d3db83b8.ogg Deku deathRW $cd8a40f2-1e2e-4e1d-a13f-b4fe210a04df(cd8a40f2-1e2e-4e1d-a13f-b4fe210a04df.oggArrowR] -$7c33cfee-e6a8-42b8-8b1d-c801b242dcf0(7c33cfee-e6a8-42b8-8b1d-c801b242dcf0.ogg Arrow punch \ No newline at end of file +$7c33cfee-e6a8-42b8-8b1d-c801b242dcf0(7c33cfee-e6a8-42b8-8b1d-c801b242dcf0.ogg Arrow punchZ] +$ddc1e14f-0d1f-4291-a29d-0dc5d8e9242b(ddc1e14f-0d1f-4291-a29d-0dc5d8e9242b.pngGeneric #( \ No newline at end of file diff --git a/src/main/java/com/bartlomiejpluta/demo/map/BaseMapHandler.java b/src/main/java/com/bartlomiejpluta/demo/map/BaseMapHandler.java index 8613e4f..caf3cb1 100644 --- a/src/main/java/com/bartlomiejpluta/demo/map/BaseMapHandler.java +++ b/src/main/java/com/bartlomiejpluta/demo/map/BaseMapHandler.java @@ -117,4 +117,12 @@ public abstract class BaseMapHandler implements MapHandler { this.spawners.add(spawner); return spawner; } + + public void icon(int x, int y, String iconSetUid, int row, int column) { + var icon = context.createIcon(iconSetUid, row, column); + icon.setScale(1f); + icon.setZIndex(-1); + icon.setCoordinates(x, y); + mainLayer.addEntity(icon); + } } \ No newline at end of file