├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── amano-ldtk-importer │ ├── examples │ └── post-import-scripts │ │ ├── minimap │ │ ├── minimap.gd │ │ └── post-import-level-gen-minimap.gd │ │ ├── post-import-add-level-areas.gd │ │ ├── post-import-entities-create-nodes.gd │ │ ├── post-import-level-multiple-scripts.gd │ │ ├── post-import-level-show-collisions.gd │ │ ├── post-import-tileset-add-collisions-by-enum.gd │ │ └── post-import-tileset-add-collisions-by-int-grid.gd │ ├── ldtk-importer.gd │ ├── ldtk-world-importer.gd │ ├── plugin.cfg │ ├── src │ ├── ldtk-layer.gd │ ├── ldtk-level.gd │ ├── ldtk-tileset.gd │ └── ldtk-world.gd │ └── util │ ├── field.gd │ ├── level.gd │ ├── post-import.gd │ ├── tile.gd │ └── util.gd ├── assets ├── screenshot-01.png └── screenshot-01.png.import ├── icon-light-mode.svg ├── icon-light-mode.svg.import ├── icon.svg ├── icon.svg.import ├── logo-dark-mode.svg.import ├── logo-light-mode.svg.import ├── main.tscn ├── maps └── test-map │ ├── Beach by deepnight.png │ ├── Beach by deepnight.png.import │ ├── Cavernas_by_Adam_Saltsman.png │ ├── Cavernas_by_Adam_Saltsman.png.import │ ├── Inca_back2_by_Kronbits.png │ ├── Inca_back2_by_Kronbits.png.import │ ├── Inca_front_by_Kronbits-extended.png │ ├── Inca_front_by_Kronbits-extended.png.import │ ├── NuclearBlaze_by_deepnight.aseprite │ ├── README.md │ ├── SunnyLand_by_Ansimuz-extended.png │ ├── SunnyLand_by_Ansimuz-extended.png.import │ ├── TopDown_by_deepnight.png │ ├── TopDown_by_deepnight.png.import │ ├── externEnums.txt │ ├── test-api.ldtk │ ├── test-api.ldtk.import │ ├── test-api.ldtkk │ └── test-api │ ├── minimaps │ ├── Autolayer.png │ ├── Autolayer.png.import │ ├── Background_image.png │ ├── Background_image.png.import │ ├── Everything.png │ ├── Everything.png.import │ ├── Tiles_and_intgrid.png │ └── Tiles_and_intgrid.png.import │ └── tilesets │ ├── test-api-tileset-16x16.res │ └── test-api-tileset-8x8.res ├── project.godot └── scenes ├── entity-ref-test.gd └── entity-ref-test.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/README.md -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/minimap/minimap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/minimap/minimap.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/minimap/post-import-level-gen-minimap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/minimap/post-import-level-gen-minimap.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-add-level-areas.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-add-level-areas.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-entities-create-nodes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-entities-create-nodes.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-level-multiple-scripts.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-level-multiple-scripts.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-level-show-collisions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-level-show-collisions.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-tileset-add-collisions-by-enum.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-tileset-add-collisions-by-enum.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/examples/post-import-scripts/post-import-tileset-add-collisions-by-int-grid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/examples/post-import-scripts/post-import-tileset-add-collisions-by-int-grid.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/ldtk-importer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/ldtk-importer.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/ldtk-world-importer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/ldtk-world-importer.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/plugin.cfg -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/src/ldtk-layer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/src/ldtk-layer.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/src/ldtk-level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/src/ldtk-level.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/src/ldtk-tileset.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/src/ldtk-tileset.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/src/ldtk-world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/src/ldtk-world.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/util/field.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/util/field.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/util/level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/util/level.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/util/post-import.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/util/post-import.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/util/tile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/util/tile.gd -------------------------------------------------------------------------------- /addons/amano-ldtk-importer/util/util.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/addons/amano-ldtk-importer/util/util.gd -------------------------------------------------------------------------------- /assets/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/assets/screenshot-01.png -------------------------------------------------------------------------------- /assets/screenshot-01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/assets/screenshot-01.png.import -------------------------------------------------------------------------------- /icon-light-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/icon-light-mode.svg -------------------------------------------------------------------------------- /icon-light-mode.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/icon-light-mode.svg.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/icon.svg.import -------------------------------------------------------------------------------- /logo-dark-mode.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/logo-dark-mode.svg.import -------------------------------------------------------------------------------- /logo-light-mode.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/logo-light-mode.svg.import -------------------------------------------------------------------------------- /main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/main.tscn -------------------------------------------------------------------------------- /maps/test-map/Beach by deepnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Beach by deepnight.png -------------------------------------------------------------------------------- /maps/test-map/Beach by deepnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Beach by deepnight.png.import -------------------------------------------------------------------------------- /maps/test-map/Cavernas_by_Adam_Saltsman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Cavernas_by_Adam_Saltsman.png -------------------------------------------------------------------------------- /maps/test-map/Cavernas_by_Adam_Saltsman.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Cavernas_by_Adam_Saltsman.png.import -------------------------------------------------------------------------------- /maps/test-map/Inca_back2_by_Kronbits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Inca_back2_by_Kronbits.png -------------------------------------------------------------------------------- /maps/test-map/Inca_back2_by_Kronbits.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Inca_back2_by_Kronbits.png.import -------------------------------------------------------------------------------- /maps/test-map/Inca_front_by_Kronbits-extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Inca_front_by_Kronbits-extended.png -------------------------------------------------------------------------------- /maps/test-map/Inca_front_by_Kronbits-extended.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/Inca_front_by_Kronbits-extended.png.import -------------------------------------------------------------------------------- /maps/test-map/NuclearBlaze_by_deepnight.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/NuclearBlaze_by_deepnight.aseprite -------------------------------------------------------------------------------- /maps/test-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/README.md -------------------------------------------------------------------------------- /maps/test-map/SunnyLand_by_Ansimuz-extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/SunnyLand_by_Ansimuz-extended.png -------------------------------------------------------------------------------- /maps/test-map/SunnyLand_by_Ansimuz-extended.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/SunnyLand_by_Ansimuz-extended.png.import -------------------------------------------------------------------------------- /maps/test-map/TopDown_by_deepnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/TopDown_by_deepnight.png -------------------------------------------------------------------------------- /maps/test-map/TopDown_by_deepnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/TopDown_by_deepnight.png.import -------------------------------------------------------------------------------- /maps/test-map/externEnums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/externEnums.txt -------------------------------------------------------------------------------- /maps/test-map/test-api.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api.ldtk -------------------------------------------------------------------------------- /maps/test-map/test-api.ldtk.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api.ldtk.import -------------------------------------------------------------------------------- /maps/test-map/test-api.ldtkk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api.ldtkk -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Autolayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Autolayer.png -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Autolayer.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Autolayer.png.import -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Background_image.png -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Background_image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Background_image.png.import -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Everything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Everything.png -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Everything.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Everything.png.import -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Tiles_and_intgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Tiles_and_intgrid.png -------------------------------------------------------------------------------- /maps/test-map/test-api/minimaps/Tiles_and_intgrid.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/minimaps/Tiles_and_intgrid.png.import -------------------------------------------------------------------------------- /maps/test-map/test-api/tilesets/test-api-tileset-16x16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/tilesets/test-api-tileset-16x16.res -------------------------------------------------------------------------------- /maps/test-map/test-api/tilesets/test-api-tileset-8x8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/maps/test-map/test-api/tilesets/test-api-tileset-8x8.res -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/entity-ref-test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/scenes/entity-ref-test.gd -------------------------------------------------------------------------------- /scenes/entity-ref-test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/amano-ldtk-importer/HEAD/scenes/entity-ref-test.tscn --------------------------------------------------------------------------------