├── .gitattributes ├── LDtkParser.resource_order ├── LDtkParser.yyp ├── LICENSE ├── README.md ├── datafiles ├── GridVania.ldtk ├── LDtkTest.ldtk └── test.ldtk ├── objects ├── oEmpty │ └── oEmpty.yy ├── oLDtk │ ├── Create_0.gml │ ├── Other_4.gml │ ├── Step_0.gml │ └── oLDtk.yy ├── oLDtk_test │ ├── Create_0.gml │ ├── Draw_0.gml │ └── oLDtk_test.yy └── oLink │ ├── Create_0.gml │ ├── Draw_0.gml │ └── oLink.yy ├── options ├── amazonfire │ └── options_amazonfire.yy ├── android │ └── options_android.yy ├── html5 │ └── options_html5.yy ├── ios │ └── options_ios.yy ├── linux │ └── options_linux.yy ├── mac │ └── options_mac.yy ├── main │ └── options_main.yy ├── operagx │ └── options_operagx.yy ├── tvos │ └── options_tvos.yy └── windows │ └── options_windows.yy ├── rooms └── rLDtkTest1 │ └── rLDtkTest1.yy ├── scripts ├── LDtkParser │ ├── LDtkParser.gml │ └── LDtkParser.yy └── LDtk_IntGrid_funcs │ ├── LDtk_IntGrid_funcs.gml │ └── LDtk_IntGrid_funcs.yy ├── sprites ├── sRedSquare │ ├── cbbff156-7089-43dc-aae9-e359729893f6.png │ ├── layers │ │ └── cbbff156-7089-43dc-aae9-e359729893f6 │ │ │ └── bc9df9b1-df1f-427b-aeec-f1ec8f7ff175.png │ └── sRedSquare.yy ├── sTest │ ├── 4d431e7e-d26e-4321-ae77-44bce2110d20.png │ ├── layers │ │ └── 4d431e7e-d26e-4321-ae77-44bce2110d20 │ │ │ └── 5b642f15-424c-499f-92a1-346a0205243d.png │ └── sTest.yy ├── sTiles │ ├── 21121d05-069b-4cac-a7f4-29276ef81c64.png │ ├── layers │ │ └── 21121d05-069b-4cac-a7f4-29276ef81c64 │ │ │ └── 5184b486-6c36-4215-b530-004e3ee30c9b.png │ └── sTiles.yy └── sYellowSquare │ ├── 898d083c-5450-4aff-863b-a11360771193.png │ ├── layers │ └── 898d083c-5450-4aff-863b-a11360771193 │ │ └── ecbc1a0e-b6c5-4435-afd3-9c563e3f3e43.png │ └── sYellowSquare.yy └── tilesets ├── tTest ├── output_tileset.png └── tTest.yy └── tTiles ├── output_tileset.png └── tTiles.yy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/.gitattributes -------------------------------------------------------------------------------- /LDtkParser.resource_order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/LDtkParser.resource_order -------------------------------------------------------------------------------- /LDtkParser.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/LDtkParser.yyp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/README.md -------------------------------------------------------------------------------- /datafiles/GridVania.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/datafiles/GridVania.ldtk -------------------------------------------------------------------------------- /datafiles/LDtkTest.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/datafiles/LDtkTest.ldtk -------------------------------------------------------------------------------- /datafiles/test.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/datafiles/test.ldtk -------------------------------------------------------------------------------- /objects/oEmpty/oEmpty.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oEmpty/oEmpty.yy -------------------------------------------------------------------------------- /objects/oLDtk/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk/Create_0.gml -------------------------------------------------------------------------------- /objects/oLDtk/Other_4.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk/Other_4.gml -------------------------------------------------------------------------------- /objects/oLDtk/Step_0.gml: -------------------------------------------------------------------------------- 1 | /// @desc Live update! 2 | 3 | LDtkLive() -------------------------------------------------------------------------------- /objects/oLDtk/oLDtk.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk/oLDtk.yy -------------------------------------------------------------------------------- /objects/oLDtk_test/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk_test/Create_0.gml -------------------------------------------------------------------------------- /objects/oLDtk_test/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk_test/Draw_0.gml -------------------------------------------------------------------------------- /objects/oLDtk_test/oLDtk_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLDtk_test/oLDtk_test.yy -------------------------------------------------------------------------------- /objects/oLink/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | __LDtkTrace("Created. p=%", p) -------------------------------------------------------------------------------- /objects/oLink/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLink/Draw_0.gml -------------------------------------------------------------------------------- /objects/oLink/oLink.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/objects/oLink/oLink.yy -------------------------------------------------------------------------------- /options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/android/options_android.yy -------------------------------------------------------------------------------- /options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/html5/options_html5.yy -------------------------------------------------------------------------------- /options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/ios/options_ios.yy -------------------------------------------------------------------------------- /options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/linux/options_linux.yy -------------------------------------------------------------------------------- /options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/mac/options_mac.yy -------------------------------------------------------------------------------- /options/main/options_main.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/main/options_main.yy -------------------------------------------------------------------------------- /options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/operagx/options_operagx.yy -------------------------------------------------------------------------------- /options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/options/windows/options_windows.yy -------------------------------------------------------------------------------- /rooms/rLDtkTest1/rLDtkTest1.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/rooms/rLDtkTest1/rLDtkTest1.yy -------------------------------------------------------------------------------- /scripts/LDtkParser/LDtkParser.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/scripts/LDtkParser/LDtkParser.gml -------------------------------------------------------------------------------- /scripts/LDtkParser/LDtkParser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/scripts/LDtkParser/LDtkParser.yy -------------------------------------------------------------------------------- /scripts/LDtk_IntGrid_funcs/LDtk_IntGrid_funcs.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/scripts/LDtk_IntGrid_funcs/LDtk_IntGrid_funcs.gml -------------------------------------------------------------------------------- /scripts/LDtk_IntGrid_funcs/LDtk_IntGrid_funcs.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/scripts/LDtk_IntGrid_funcs/LDtk_IntGrid_funcs.yy -------------------------------------------------------------------------------- /sprites/sRedSquare/cbbff156-7089-43dc-aae9-e359729893f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sRedSquare/cbbff156-7089-43dc-aae9-e359729893f6.png -------------------------------------------------------------------------------- /sprites/sRedSquare/layers/cbbff156-7089-43dc-aae9-e359729893f6/bc9df9b1-df1f-427b-aeec-f1ec8f7ff175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sRedSquare/layers/cbbff156-7089-43dc-aae9-e359729893f6/bc9df9b1-df1f-427b-aeec-f1ec8f7ff175.png -------------------------------------------------------------------------------- /sprites/sRedSquare/sRedSquare.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sRedSquare/sRedSquare.yy -------------------------------------------------------------------------------- /sprites/sTest/4d431e7e-d26e-4321-ae77-44bce2110d20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTest/4d431e7e-d26e-4321-ae77-44bce2110d20.png -------------------------------------------------------------------------------- /sprites/sTest/layers/4d431e7e-d26e-4321-ae77-44bce2110d20/5b642f15-424c-499f-92a1-346a0205243d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTest/layers/4d431e7e-d26e-4321-ae77-44bce2110d20/5b642f15-424c-499f-92a1-346a0205243d.png -------------------------------------------------------------------------------- /sprites/sTest/sTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTest/sTest.yy -------------------------------------------------------------------------------- /sprites/sTiles/21121d05-069b-4cac-a7f4-29276ef81c64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTiles/21121d05-069b-4cac-a7f4-29276ef81c64.png -------------------------------------------------------------------------------- /sprites/sTiles/layers/21121d05-069b-4cac-a7f4-29276ef81c64/5184b486-6c36-4215-b530-004e3ee30c9b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTiles/layers/21121d05-069b-4cac-a7f4-29276ef81c64/5184b486-6c36-4215-b530-004e3ee30c9b.png -------------------------------------------------------------------------------- /sprites/sTiles/sTiles.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sTiles/sTiles.yy -------------------------------------------------------------------------------- /sprites/sYellowSquare/898d083c-5450-4aff-863b-a11360771193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sYellowSquare/898d083c-5450-4aff-863b-a11360771193.png -------------------------------------------------------------------------------- /sprites/sYellowSquare/layers/898d083c-5450-4aff-863b-a11360771193/ecbc1a0e-b6c5-4435-afd3-9c563e3f3e43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sYellowSquare/layers/898d083c-5450-4aff-863b-a11360771193/ecbc1a0e-b6c5-4435-afd3-9c563e3f3e43.png -------------------------------------------------------------------------------- /sprites/sYellowSquare/sYellowSquare.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/sprites/sYellowSquare/sYellowSquare.yy -------------------------------------------------------------------------------- /tilesets/tTest/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/tilesets/tTest/output_tileset.png -------------------------------------------------------------------------------- /tilesets/tTest/tTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/tilesets/tTest/tTest.yy -------------------------------------------------------------------------------- /tilesets/tTiles/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/tilesets/tTiles/output_tileset.png -------------------------------------------------------------------------------- /tilesets/tTiles/tTiles.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/LDtkParser/HEAD/tilesets/tTiles/tTiles.yy --------------------------------------------------------------------------------