├── FLARE ├── cave │ ├── cave_test.tmx │ ├── rules.txt │ ├── rules │ │ ├── cave_ruleset0.tmx │ │ ├── cave_ruleset1.tmx │ │ └── cave_ruleset2.tmx │ ├── set_rules.png │ ├── tiled_cave.png │ └── tiled_collision.png ├── dungeon │ ├── dungeon_test.tmx │ ├── rules.txt │ ├── rules │ │ ├── dungeon_ruleset0.tmx │ │ ├── dungeon_ruleset1.tmx │ │ ├── dungeon_ruleset2.tmx │ │ └── dungeon_ruleset3.tmx │ ├── set_rules.png │ ├── tiled_collision.png │ └── tiled_dungeon.png ├── grassland │ ├── grassland.png │ ├── grassland_structures.png │ ├── grassland_test.tmx │ ├── grassland_trees.png │ ├── grassland_water.png │ ├── rules.txt │ ├── rules │ │ ├── grassland_ruleset0.tmx │ │ ├── grassland_ruleset1.tmx │ │ └── grassland_ruleset2.tmx │ ├── set_rules.png │ └── tiled_collision.png ├── tiled_cave.png ├── tiled_collision.png └── tiled_dungeon.png ├── README ├── The Mana World 2 ├── Woodland_ground.png ├── Woodland_ground1.tsx ├── cave.png ├── example.tmx ├── rule_001.tmx ├── rule_002.tmx ├── rule_003.tmx ├── rule_004.tmx └── rules.txt ├── The Mana World ├── graphics │ └── tiles │ │ ├── Snow.png │ │ ├── Snow_ground.png │ │ ├── Woodland_ground.png │ │ ├── Woodland_village.png │ │ ├── Woodland_x2.png │ │ ├── Woodland_x3.png │ │ ├── Woodland_x4.png │ │ ├── Woodland_x5.png │ │ ├── Woodland_x8.png │ │ ├── cave.png │ │ ├── cave_x2.png │ │ ├── collision.png │ │ ├── icecave.png │ │ ├── set_cave.png │ │ ├── set_desert.png │ │ ├── set_icecave.png │ │ ├── set_icemountain.png │ │ ├── set_rules.png │ │ ├── set_thermin_cave.png │ │ ├── set_woodland.png │ │ └── thermin-cave.png └── rules │ ├── cave │ ├── rule_cave.txt │ ├── rule_cave_001.tmx │ ├── rule_cave_002.tmx │ ├── rule_cave_003.tmx │ ├── rule_cave_004.tmx │ ├── rule_cave_005.tmx │ ├── rule_cave_006.tmx │ ├── rule_cave_007.tmx │ ├── rule_cave_008.tmx │ ├── rule_cave_009.tmx │ ├── rule_cave_010.tmx │ ├── rule_cave_050.tmx │ └── rule_cave_100.tmx │ ├── desert │ ├── 001.tmx │ ├── 002.tmx │ ├── 003.tmx │ ├── 004.tmx │ └── 010.tmx │ ├── example_cave.tmx │ ├── example_icecave.tmx │ ├── example_mountain.tmx │ ├── example_woodland.tmx │ ├── icecave │ ├── rule_icecave.txt │ ├── rule_icecave_001.tmx │ ├── rule_icecave_002.tmx │ ├── rule_icecave_003.tmx │ ├── rule_icecave_004.tmx │ ├── rule_icecave_005.tmx │ ├── rule_icecave_006.tmx │ ├── rule_icecave_007.tmx │ ├── rule_icecave_009.tmx │ ├── rule_icecave_010.tmx │ ├── rule_icecave_020.tmx │ └── rule_icecave_100.tmx │ ├── icemountain │ ├── rule_icemountain.tmx │ ├── rule_icemountain.txt │ ├── rule_icemountain_001.tmx │ ├── rule_icemountain_002.tmx │ ├── rule_icemountain_003.tmx │ ├── rule_icemountain_004.tmx │ ├── rule_icemountain_010.tmx │ └── rule_icemountain_011.tmx │ ├── rules.txt │ ├── thermin_cave │ ├── rule001.tmx │ ├── rule002.tmx │ ├── rule003.tmx │ ├── rule004.tmx │ ├── rule005.tmx │ ├── rule006.tmx │ ├── rule007.tmx │ ├── rule008.tmx │ ├── rule009.tmx │ └── rules.txt │ └── woodland │ ├── rule_woodland.txt │ ├── rule_woodland_001.tmx │ ├── rule_woodland_002.tmx │ ├── rule_woodland_003.tmx │ ├── rule_woodland_004.tmx │ ├── rule_woodland_005.tmx │ ├── rule_woodland_006.tmx │ ├── rule_woodland_007.tmx │ ├── rule_woodland_008.tmx │ ├── rule_woodland_050.tmx │ ├── rule_woodland_051.tmx │ ├── rule_woodland_053.tmx │ ├── rule_woodland_100.tmx │ ├── rule_woodland_101.tmx │ ├── rule_woodland_102.tmx │ ├── rule_woodland_105.tmx │ ├── rule_woodland_110.tmx │ ├── rule_woodland_111.tmx │ ├── rule_woodland_112.tmx │ ├── rule_woodland_115.tmx │ ├── rule_woodland_120.tmx │ ├── rule_woodland_121.tmx │ ├── rule_woodland_122.tmx │ ├── rule_woodland_123.tmx │ ├── rule_woodland_124.tmx │ ├── rule_woodland_125.tmx │ ├── rule_woodland_126.tmx │ ├── rule_woodland_127.tmx │ ├── rule_woodland_128.tmx │ └── rule_woodland_129.tmx ├── docs └── Automapping │ ├── .gitignore │ ├── Automapping_rulefiles.pdf │ ├── Automapping_rulefiles.tex │ ├── Example │ ├── AbstractInput │ │ ├── 12.eps │ │ ├── 14.eps │ │ ├── 16.eps │ │ ├── 32.eps │ │ ├── 34.eps │ │ ├── 36.eps │ │ ├── 52.eps │ │ ├── 54.eps │ │ ├── 56.eps │ │ └── AbstractInput.tex │ ├── LoneCoder │ │ ├── alternatingwalls.tex │ │ └── alternatingwalls │ │ │ ├── desired.eps │ │ │ ├── firstattempt.eps │ │ │ ├── input.eps │ │ │ ├── output.eps │ │ │ ├── regions.eps │ │ │ └── setlayer.eps │ └── TheManaWorld │ │ ├── after.eps │ │ ├── after1.eps │ │ ├── before.eps │ │ ├── flow1.eps │ │ ├── flow2.eps │ │ ├── flow3.eps │ │ ├── flow4.eps │ │ ├── shorelinecorners.tex │ │ ├── shorelinecorners │ │ ├── after.eps │ │ ├── before.eps │ │ ├── input_Ground.eps │ │ ├── input_Ground1.eps │ │ ├── input_Ground2.eps │ │ ├── output_Ground.eps │ │ ├── pattern0.eps │ │ ├── pattern1.eps │ │ ├── pattern2.eps │ │ ├── pattern3.eps │ │ ├── pattern4.eps │ │ ├── pattern5.eps │ │ ├── pattern6.eps │ │ ├── pattern7.eps │ │ ├── pattern8.eps │ │ ├── regions_input.eps │ │ ├── regions_output.eps │ │ └── regions_united.eps │ │ ├── shorelinestraight.tex │ │ ├── shorelinestraight │ │ ├── input.eps │ │ ├── output.eps │ │ └── regions.eps │ │ └── themanaworld.tex │ └── build.sh └── orthogonal_height_type ├── map_under_construction.tmx ├── output.png ├── rules.txt ├── rules1.tmx └── rules_input.png /FLARE/cave/cave_test.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/cave_test.tmx -------------------------------------------------------------------------------- /FLARE/cave/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/rules.txt -------------------------------------------------------------------------------- /FLARE/cave/rules/cave_ruleset0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/rules/cave_ruleset0.tmx -------------------------------------------------------------------------------- /FLARE/cave/rules/cave_ruleset1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/rules/cave_ruleset1.tmx -------------------------------------------------------------------------------- /FLARE/cave/rules/cave_ruleset2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/rules/cave_ruleset2.tmx -------------------------------------------------------------------------------- /FLARE/cave/set_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/set_rules.png -------------------------------------------------------------------------------- /FLARE/cave/tiled_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/tiled_cave.png -------------------------------------------------------------------------------- /FLARE/cave/tiled_collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/cave/tiled_collision.png -------------------------------------------------------------------------------- /FLARE/dungeon/dungeon_test.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/dungeon_test.tmx -------------------------------------------------------------------------------- /FLARE/dungeon/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/rules.txt -------------------------------------------------------------------------------- /FLARE/dungeon/rules/dungeon_ruleset0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/rules/dungeon_ruleset0.tmx -------------------------------------------------------------------------------- /FLARE/dungeon/rules/dungeon_ruleset1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/rules/dungeon_ruleset1.tmx -------------------------------------------------------------------------------- /FLARE/dungeon/rules/dungeon_ruleset2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/rules/dungeon_ruleset2.tmx -------------------------------------------------------------------------------- /FLARE/dungeon/rules/dungeon_ruleset3.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/rules/dungeon_ruleset3.tmx -------------------------------------------------------------------------------- /FLARE/dungeon/set_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/set_rules.png -------------------------------------------------------------------------------- /FLARE/dungeon/tiled_collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/tiled_collision.png -------------------------------------------------------------------------------- /FLARE/dungeon/tiled_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/dungeon/tiled_dungeon.png -------------------------------------------------------------------------------- /FLARE/grassland/grassland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/grassland.png -------------------------------------------------------------------------------- /FLARE/grassland/grassland_structures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/grassland_structures.png -------------------------------------------------------------------------------- /FLARE/grassland/grassland_test.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/grassland_test.tmx -------------------------------------------------------------------------------- /FLARE/grassland/grassland_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/grassland_trees.png -------------------------------------------------------------------------------- /FLARE/grassland/grassland_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/grassland_water.png -------------------------------------------------------------------------------- /FLARE/grassland/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/rules.txt -------------------------------------------------------------------------------- /FLARE/grassland/rules/grassland_ruleset0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/rules/grassland_ruleset0.tmx -------------------------------------------------------------------------------- /FLARE/grassland/rules/grassland_ruleset1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/rules/grassland_ruleset1.tmx -------------------------------------------------------------------------------- /FLARE/grassland/rules/grassland_ruleset2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/rules/grassland_ruleset2.tmx -------------------------------------------------------------------------------- /FLARE/grassland/set_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/set_rules.png -------------------------------------------------------------------------------- /FLARE/grassland/tiled_collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/grassland/tiled_collision.png -------------------------------------------------------------------------------- /FLARE/tiled_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/tiled_cave.png -------------------------------------------------------------------------------- /FLARE/tiled_collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/tiled_collision.png -------------------------------------------------------------------------------- /FLARE/tiled_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/FLARE/tiled_dungeon.png -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/README -------------------------------------------------------------------------------- /The Mana World 2/Woodland_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/Woodland_ground.png -------------------------------------------------------------------------------- /The Mana World 2/Woodland_ground1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/Woodland_ground1.tsx -------------------------------------------------------------------------------- /The Mana World 2/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/cave.png -------------------------------------------------------------------------------- /The Mana World 2/example.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/example.tmx -------------------------------------------------------------------------------- /The Mana World 2/rule_001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/rule_001.tmx -------------------------------------------------------------------------------- /The Mana World 2/rule_002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/rule_002.tmx -------------------------------------------------------------------------------- /The Mana World 2/rule_003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/rule_003.tmx -------------------------------------------------------------------------------- /The Mana World 2/rule_004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/rule_004.tmx -------------------------------------------------------------------------------- /The Mana World 2/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World 2/rules.txt -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Snow.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Snow_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Snow_ground.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_ground.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_village.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_x2.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_x3.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_x4.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_x5.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/Woodland_x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/Woodland_x8.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/cave.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/cave_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/cave_x2.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/collision.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/icecave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/icecave.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_cave.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_desert.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_icecave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_icecave.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_icemountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_icemountain.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_rules.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_thermin_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_thermin_cave.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/set_woodland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/set_woodland.png -------------------------------------------------------------------------------- /The Mana World/graphics/tiles/thermin-cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/graphics/tiles/thermin-cave.png -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave.txt -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_005.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_005.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_006.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_006.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_007.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_007.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_008.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_008.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_009.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_009.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_010.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_010.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_050.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_050.tmx -------------------------------------------------------------------------------- /The Mana World/rules/cave/rule_cave_100.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/cave/rule_cave_100.tmx -------------------------------------------------------------------------------- /The Mana World/rules/desert/001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/desert/001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/desert/002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/desert/002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/desert/003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/desert/003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/desert/004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/desert/004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/desert/010.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/desert/010.tmx -------------------------------------------------------------------------------- /The Mana World/rules/example_cave.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/example_cave.tmx -------------------------------------------------------------------------------- /The Mana World/rules/example_icecave.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/example_icecave.tmx -------------------------------------------------------------------------------- /The Mana World/rules/example_mountain.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/example_mountain.tmx -------------------------------------------------------------------------------- /The Mana World/rules/example_woodland.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/example_woodland.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave.txt -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_005.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_005.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_006.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_006.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_007.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_007.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_009.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_009.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_010.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_010.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_020.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_020.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icecave/rule_icecave_100.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icecave/rule_icecave_100.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain.txt -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_010.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_010.tmx -------------------------------------------------------------------------------- /The Mana World/rules/icemountain/rule_icemountain_011.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/icemountain/rule_icemountain_011.tmx -------------------------------------------------------------------------------- /The Mana World/rules/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/rules.txt -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule005.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule005.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule006.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule006.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule007.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule007.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule008.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule008.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rule009.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rule009.tmx -------------------------------------------------------------------------------- /The Mana World/rules/thermin_cave/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/thermin_cave/rules.txt -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland.txt -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_001.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_002.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_003.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_004.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_005.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_005.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_006.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_006.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_007.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_007.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_008.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_008.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_050.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_050.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_051.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_051.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_053.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_053.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_100.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_100.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_101.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_101.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_102.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_102.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_105.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_105.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_110.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_110.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_111.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_111.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_112.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_112.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_115.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_115.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_120.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_120.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_121.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_121.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_122.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_122.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_123.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_123.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_124.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_124.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_125.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_125.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_126.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_126.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_127.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_127.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_128.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_128.tmx -------------------------------------------------------------------------------- /The Mana World/rules/woodland/rule_woodland_129.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/The Mana World/rules/woodland/rule_woodland_129.tmx -------------------------------------------------------------------------------- /docs/Automapping/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.dvi 3 | *.aux 4 | -------------------------------------------------------------------------------- /docs/Automapping/Automapping_rulefiles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Automapping_rulefiles.pdf -------------------------------------------------------------------------------- /docs/Automapping/Automapping_rulefiles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Automapping_rulefiles.tex -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/12.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/12.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/14.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/14.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/16.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/16.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/32.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/32.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/34.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/34.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/36.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/36.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/52.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/52.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/54.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/54.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/56.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/56.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/AbstractInput/AbstractInput.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/AbstractInput/AbstractInput.tex -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls.tex -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/desired.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/desired.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/firstattempt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/firstattempt.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/input.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/input.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/output.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/output.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/regions.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/regions.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/LoneCoder/alternatingwalls/setlayer.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/LoneCoder/alternatingwalls/setlayer.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/after.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/after.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/after1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/after1.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/before.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/before.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/flow1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/flow1.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/flow2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/flow2.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/flow3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/flow3.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/flow4.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/flow4.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners.tex -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/after.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/after.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/before.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/before.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground1.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/input_Ground2.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/output_Ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/output_Ground.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern0.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern0.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern1.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern2.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern3.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern4.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern4.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern5.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern5.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern6.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern6.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern7.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern7.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern8.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/pattern8.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_input.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_input.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_output.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_output.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_united.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinecorners/regions_united.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinestraight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinestraight.tex -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinestraight/input.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinestraight/input.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinestraight/output.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinestraight/output.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/shorelinestraight/regions.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/shorelinestraight/regions.eps -------------------------------------------------------------------------------- /docs/Automapping/Example/TheManaWorld/themanaworld.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/Example/TheManaWorld/themanaworld.tex -------------------------------------------------------------------------------- /docs/Automapping/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/docs/Automapping/build.sh -------------------------------------------------------------------------------- /orthogonal_height_type/map_under_construction.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/orthogonal_height_type/map_under_construction.tmx -------------------------------------------------------------------------------- /orthogonal_height_type/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/orthogonal_height_type/output.png -------------------------------------------------------------------------------- /orthogonal_height_type/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules1.tmx 2 | -------------------------------------------------------------------------------- /orthogonal_height_type/rules1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/orthogonal_height_type/rules1.tmx -------------------------------------------------------------------------------- /orthogonal_height_type/rules_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbeller/tiled_examples/HEAD/orthogonal_height_type/rules_input.png --------------------------------------------------------------------------------