feat: Tiled Map Editor setup and initial farm map design

- Installed and configured Tiled Map Editor
- Created 4 tilesets (grass, water, dirt, decorations)
- Generated farm_2d.tmx (100x100 orthogonal map)
- Created 4 render layers (Ground, Paths, Decorations, DecorationsTall)
- Painted grass base layer across entire map
- Added dirt path network
- Placed decorative elements (trees, flowers, rocks)
- Recovered and fixed tileset PNG images
- Updated 2D_CONVERSION_LOG.md with Phase 5 completion (85% done)

Next: Export to JSON and integrate into Phaser game
This commit is contained in:
2025-12-17 19:11:29 +01:00
parent d1d65ea563
commit 17e988f96f
10 changed files with 453 additions and 21 deletions

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.11.2" name="decorations_tiles" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="decorations.png" width="1024" height="1024"/>
</tileset>

View File

@@ -1,4 +0,0 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="decorations_tileset" tilewidth="48" tileheight="48" tilecount="16" columns="4">
<image source="tileset_decorations.png" width="192" height="192" />
</tileset>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 519 KiB

After

Width:  |  Height:  |  Size: 480 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.11.2" name="dirt_tiles" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="dirt.png" width="1024" height="1024"/>
</tileset>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 609 KiB

After

Width:  |  Height:  |  Size: 688 KiB

View File

@@ -1,4 +1,4 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="grass_tileset" tilewidth="48" tileheight="48" tilecount="16" columns="4">
<image source="tileset_grass_clean.png" width="192" height="192" />
</tileset>
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.11.2" name=" grass_tiles" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="grass.png" width="1024" height="1024"/>
</tileset>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 481 KiB

After

Width:  |  Height:  |  Size: 595 KiB

View File

@@ -1,9 +1,4 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="water_tileset" tilewidth="48" tileheight="48" tilecount="16" columns="4">
<image source="tileset_water_pond.png" width="192" height="192" />
<tile id="0">
<properties>
<property name="collides" type="bool" value="true" />
</properties>
</tile>
</tileset>
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.11.2" name="water_tiles" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="water.png" width="1024" height="1024"/>
</tileset>