├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── doc └── config.ld ├── main.lua ├── spec └── map_spec.lua ├── sti ├── atlas.lua ├── graphics.lua ├── init.lua ├── plugins │ ├── box2d.lua │ └── bump.lua └── utils.lua ├── tests ├── collection.lua ├── hex.lua ├── images │ ├── grid.png │ ├── hale_may_320.png │ ├── hex1.png │ └── iso.png ├── iso.lua ├── objects.lua ├── ortho-inf.lua ├── ortho.lua ├── stag.lua ├── tmx │ ├── collection.tmx │ ├── hex.tmx │ ├── iso.tmx │ ├── objects.tmx │ ├── ortho-inf.tmx │ ├── ortho.tmx │ └── stag.tmx └── tsx │ ├── collection.tsx │ ├── grid.tsx │ └── may.tsx └── tutorials ├── 01-introduction-to-sti.md └── img ├── tiled-01.png ├── tiled-02.png ├── tiled-03.png ├── tiled-04.png └── tiled-05.png /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/README.md -------------------------------------------------------------------------------- /doc/config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/doc/config.ld -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/main.lua -------------------------------------------------------------------------------- /spec/map_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/spec/map_spec.lua -------------------------------------------------------------------------------- /sti/atlas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/atlas.lua -------------------------------------------------------------------------------- /sti/graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/graphics.lua -------------------------------------------------------------------------------- /sti/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/init.lua -------------------------------------------------------------------------------- /sti/plugins/box2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/plugins/box2d.lua -------------------------------------------------------------------------------- /sti/plugins/bump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/plugins/bump.lua -------------------------------------------------------------------------------- /sti/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/sti/utils.lua -------------------------------------------------------------------------------- /tests/collection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/collection.lua -------------------------------------------------------------------------------- /tests/hex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/hex.lua -------------------------------------------------------------------------------- /tests/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/images/grid.png -------------------------------------------------------------------------------- /tests/images/hale_may_320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/images/hale_may_320.png -------------------------------------------------------------------------------- /tests/images/hex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/images/hex1.png -------------------------------------------------------------------------------- /tests/images/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/images/iso.png -------------------------------------------------------------------------------- /tests/iso.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/iso.lua -------------------------------------------------------------------------------- /tests/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/objects.lua -------------------------------------------------------------------------------- /tests/ortho-inf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/ortho-inf.lua -------------------------------------------------------------------------------- /tests/ortho.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/ortho.lua -------------------------------------------------------------------------------- /tests/stag.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/stag.lua -------------------------------------------------------------------------------- /tests/tmx/collection.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/collection.tmx -------------------------------------------------------------------------------- /tests/tmx/hex.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/hex.tmx -------------------------------------------------------------------------------- /tests/tmx/iso.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/iso.tmx -------------------------------------------------------------------------------- /tests/tmx/objects.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/objects.tmx -------------------------------------------------------------------------------- /tests/tmx/ortho-inf.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/ortho-inf.tmx -------------------------------------------------------------------------------- /tests/tmx/ortho.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/ortho.tmx -------------------------------------------------------------------------------- /tests/tmx/stag.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tmx/stag.tmx -------------------------------------------------------------------------------- /tests/tsx/collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tsx/collection.tsx -------------------------------------------------------------------------------- /tests/tsx/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tsx/grid.tsx -------------------------------------------------------------------------------- /tests/tsx/may.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tests/tsx/may.tsx -------------------------------------------------------------------------------- /tutorials/01-introduction-to-sti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/01-introduction-to-sti.md -------------------------------------------------------------------------------- /tutorials/img/tiled-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/img/tiled-01.png -------------------------------------------------------------------------------- /tutorials/img/tiled-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/img/tiled-02.png -------------------------------------------------------------------------------- /tutorials/img/tiled-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/img/tiled-03.png -------------------------------------------------------------------------------- /tutorials/img/tiled-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/img/tiled-04.png -------------------------------------------------------------------------------- /tutorials/img/tiled-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karai17/Simple-Tiled-Implementation/HEAD/tutorials/img/tiled-05.png --------------------------------------------------------------------------------