Skip to content

Commit

Permalink
Fix paths in map rendering build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Jun 5, 2024
1 parent a08d9ae commit 8f6c3ca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions buildtools/ant_modules/maps.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
</classpath>
</taskdef>

<mkdir dir="tiled/world"/>
<mkdir dir="${maps}/world"/>
<maprenderer imagePath="${maps}/world/">
<fileset dir="tiled">
<fileset dir="${maps}">
<include name="Level */**/*.tmx"/>
<include name="interiors/**/*.tmx"/>
<exclude name="**/memory/**"/>
Expand All @@ -41,16 +41,16 @@
0 128 0.0078125
-->

<mkdir dir="tiled/world"/>
<mkdir dir="${maps}/world"/>
<maprenderer imagePath="${maps}/world/" zoom="0.0625">
<fileset dir="tiled">
<fileset dir="${maps}">
<include name="Level 0/**/*.tmx"/>
<exclude name="**/memory/**"/>
</fileset>
</maprenderer>
<mkdir dir="tiled/world/large"/>
<mkdir dir="${maps}/world/large"/>
<maprenderer imagePath="${maps}/world/large" zoom="0.25">
<fileset dir="tiled">
<fileset dir="${maps}">
<include name="Level 0/**/*.tmx"/>
<exclude name="**/memory/**"/>
</fileset>
Expand All @@ -76,7 +76,7 @@
</classpath>
</taskdef>
<maprenderer imagePath="${maps}/world/" zoom="1.0">
<fileset dir="tiled/world">
<fileset dir="${maps}/world">
<include name="world.tmx"/>
</fileset>
</maprenderer>
Expand All @@ -94,7 +94,7 @@
</taskdef>

<mapupdater>
<fileset dir="tiled">
<fileset dir="${maps}">
<include name="Level */**/*.tmx"/>
<include name="interiors/**/*.tmx"/>
</fileset>
Expand Down

0 comments on commit 8f6c3ca

Please sign in to comment.