├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SuperTiled2Unity ├── Assets │ ├── Samples.meta │ └── Samples │ │ ├── Super Tiled2Unity.meta │ │ └── Super Tiled2Unity │ │ ├── 2.3.1.meta │ │ └── 2.3.1 │ │ ├── Aseprite.meta │ │ ├── Aseprite │ │ ├── ASE_numbers.aseprite │ │ ├── ASE_numbers.aseprite.meta │ │ ├── S_ase_testing.unity │ │ ├── S_ase_testing.unity.meta │ │ ├── TMX_numbers.tmx │ │ ├── TMX_numbers.tmx.meta │ │ ├── TSX_numbers.tsx │ │ └── TSX_numbers.tsx.meta │ │ ├── Overhead.meta │ │ ├── Overhead │ │ ├── Maps.meta │ │ ├── Maps │ │ │ ├── TestOverhead.tmx │ │ │ ├── TestOverhead.tmx.meta │ │ │ ├── Zoria Tileset.meta │ │ │ └── Zoria Tileset │ │ │ │ ├── gui.png │ │ │ │ ├── gui.png.meta │ │ │ │ ├── mockups.png │ │ │ │ ├── mockups.png.meta │ │ │ │ ├── overhead-objects.tsx │ │ │ │ ├── overhead-objects.tsx.meta │ │ │ │ ├── pillar.png │ │ │ │ ├── pillar.png.meta │ │ │ │ ├── pilllar-broken.png │ │ │ │ ├── pilllar-broken.png.meta │ │ │ │ ├── readme.txt │ │ │ │ ├── readme.txt.meta │ │ │ │ ├── scraps.png │ │ │ │ ├── scraps.png.meta │ │ │ │ ├── scraps.tsx │ │ │ │ ├── scraps.tsx.meta │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites.png.meta │ │ │ │ ├── tiles.png │ │ │ │ ├── tiles.png.meta │ │ │ │ ├── tiles.tsx │ │ │ │ ├── tiles.tsx.meta │ │ │ │ ├── water.png │ │ │ │ ├── water.png.meta │ │ │ │ ├── water.tsx │ │ │ │ ├── water.tsx.meta │ │ │ │ ├── waterfall.png │ │ │ │ └── waterfall.png.meta │ │ ├── Sprites.meta │ │ ├── Sprites │ │ │ ├── MegaDad.meta │ │ │ ├── MegaDad │ │ │ │ ├── Idle-down.anim │ │ │ │ ├── Idle-down.anim.meta │ │ │ │ ├── Idle-left.anim │ │ │ │ ├── Idle-left.anim.meta │ │ │ │ ├── Idle-right.anim │ │ │ │ ├── Idle-right.anim.meta │ │ │ │ ├── Idle-up.anim │ │ │ │ ├── Idle-up.anim.meta │ │ │ │ ├── MegaDad-controller.controller │ │ │ │ ├── MegaDad-controller.controller.meta │ │ │ │ ├── MegaDad-sheet.png │ │ │ │ ├── MegaDad-sheet.png.meta │ │ │ │ ├── MegaDad.prefab │ │ │ │ ├── MegaDad.prefab.meta │ │ │ │ ├── OverheadMegaDadController.cs │ │ │ │ ├── OverheadMegaDadController.cs.meta │ │ │ │ ├── Walk-down.anim │ │ │ │ ├── Walk-down.anim.meta │ │ │ │ ├── Walk-left.anim │ │ │ │ ├── Walk-left.anim.meta │ │ │ │ ├── Walk-right.anim │ │ │ │ ├── Walk-right.anim.meta │ │ │ │ ├── Walk-up.anim │ │ │ │ └── Walk-up.anim.meta │ │ │ ├── Splash.meta │ │ │ └── Splash │ │ │ │ ├── Splash.prefab │ │ │ │ ├── Splash.prefab.meta │ │ │ │ ├── splash-anim.anim │ │ │ │ ├── splash-anim.anim.meta │ │ │ │ ├── splash-ctrl.controller │ │ │ │ ├── splash-ctrl.controller.meta │ │ │ │ ├── splash.png │ │ │ │ └── splash.png.meta │ │ ├── overhead.unity │ │ └── overhead.unity.meta │ │ ├── Tileset Atlas (Fixing Seams).meta │ │ └── Tileset Atlas (Fixing Seams) │ │ ├── SA_Example.spriteatlas │ │ ├── SA_Example.spriteatlas.meta │ │ ├── S_Seams.unity │ │ ├── S_Seams.unity.meta │ │ ├── SeamMaker.cs │ │ ├── SeamMaker.cs.meta │ │ ├── TMap_WithSeams.tmx │ │ ├── TMap_WithSeams.tmx.meta │ │ ├── TMap_WithoutSeams.tmx │ │ ├── TMap_WithoutSeams.tmx.meta │ │ ├── TTileAtlas_Example.st2u_atlas │ │ ├── TTileAtlas_Example.st2u_atlas.meta │ │ ├── TTiles_Letters.tsx │ │ ├── TTiles_Letters.tsx.meta │ │ ├── TTiles_Letters_PutInAtlas.tsx │ │ ├── TTiles_Letters_PutInAtlas.tsx.meta │ │ ├── T_Letters.png │ │ └── T_Letters.png.meta ├── Packages │ ├── com.seanba.super-tiled2unity │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AnimationBuilder.cs │ │ │ ├── AnimationBuilder.cs.meta │ │ │ ├── AssetPath.cs │ │ │ ├── AssetPath.cs.meta │ │ │ ├── AssetTypes.meta │ │ │ ├── AssetTypes │ │ │ │ ├── SuperAsset.cs │ │ │ │ ├── SuperAsset.cs.meta │ │ │ │ ├── SuperAssetMap.cs │ │ │ │ ├── SuperAssetMap.cs.meta │ │ │ │ ├── SuperAssetSettings.cs │ │ │ │ ├── SuperAssetSettings.cs.meta │ │ │ │ ├── SuperAssetTemplate.cs │ │ │ │ ├── SuperAssetTemplate.cs.meta │ │ │ │ ├── SuperAssetTileset.cs │ │ │ │ ├── SuperAssetTileset.cs.meta │ │ │ │ ├── SuperAssetWorld.cs │ │ │ │ └── SuperAssetWorld.cs.meta │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── AutoCustomTmxImporterAttribute.cs │ │ │ │ └── AutoCustomTmxImporterAttribute.cs.meta │ │ │ ├── Collision.meta │ │ │ ├── Collision │ │ │ │ ├── CollisionBuilder.cs │ │ │ │ ├── CollisionBuilder.cs.meta │ │ │ │ ├── CollisionClipper.cs │ │ │ │ ├── CollisionClipper.cs.meta │ │ │ │ ├── CollisionClipperKey.cs │ │ │ │ ├── CollisionClipperKey.cs.meta │ │ │ │ ├── Geometry.meta │ │ │ │ ├── Geometry │ │ │ │ │ ├── ComposeConvexPolygons.cs │ │ │ │ │ ├── ComposeConvexPolygons.cs.meta │ │ │ │ │ ├── CompositionPolygon.cs │ │ │ │ │ ├── CompositionPolygon.cs.meta │ │ │ │ │ ├── Math.cs │ │ │ │ │ ├── Math.cs.meta │ │ │ │ │ ├── PolygonEdge.cs │ │ │ │ │ ├── PolygonEdge.cs.meta │ │ │ │ │ ├── PolygonEdgeGroup.cs │ │ │ │ │ ├── PolygonEdgeGroup.cs.meta │ │ │ │ │ ├── PolylineReduction.cs │ │ │ │ │ ├── PolylineReduction.cs.meta │ │ │ │ │ ├── Triangulator.cs │ │ │ │ │ └── Triangulator.cs.meta │ │ │ │ ├── TilePolygon.cs │ │ │ │ ├── TilePolygon.cs.meta │ │ │ │ ├── TilePolygonCollection.cs │ │ │ │ └── TilePolygonCollection.cs.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ST2U Settings.asset │ │ │ │ ├── ST2U Settings.asset.meta │ │ │ │ ├── SuperTiled2Unity_Config.cs │ │ │ │ └── SuperTiled2Unity_Config.cs.meta │ │ │ ├── CustomEditors.meta │ │ │ ├── CustomEditors │ │ │ │ ├── ColliderGizmos.cs │ │ │ │ ├── ColliderGizmos.cs.meta │ │ │ │ ├── SuperColliderComponentEditor.cs │ │ │ │ ├── SuperColliderComponentEditor.cs.meta │ │ │ │ ├── SuperMapEditor.cs │ │ │ │ ├── SuperMapEditor.cs.meta │ │ │ │ ├── SuperWorldEditor.cs │ │ │ │ └── SuperWorldEditor.cs.meta │ │ │ ├── CustomImporters.meta │ │ │ ├── CustomImporters │ │ │ │ ├── CustomTmxImporter.cs │ │ │ │ └── CustomTmxImporter.cs.meta │ │ │ ├── DataCompression.cs │ │ │ ├── DataCompression.cs.meta │ │ │ ├── DataEncoding.cs │ │ │ ├── DataEncoding.cs.meta │ │ │ ├── DrawOrder.cs │ │ │ ├── DrawOrder.cs.meta │ │ │ ├── Errors.meta │ │ │ ├── Errors │ │ │ │ ├── ImportErrorsEditor.cs │ │ │ │ └── ImportErrorsEditor.cs.meta │ │ │ ├── Exceptions.meta │ │ │ ├── Exceptions │ │ │ │ ├── CustomImporterException.cs │ │ │ │ └── CustomImporterException.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── AppDomainExtensions.cs │ │ │ │ ├── AppDomainExtensions.cs.meta │ │ │ │ ├── ByteExtensions.cs │ │ │ │ ├── ByteExtensions.cs.meta │ │ │ │ ├── Collider2DExtensions.cs │ │ │ │ ├── Collider2DExtensions.cs.meta │ │ │ │ ├── CollisionObjectExtensions.cs │ │ │ │ ├── CollisionObjectExtensions.cs.meta │ │ │ │ ├── CompositeCollider2DExtensions.cs │ │ │ │ ├── CompositeCollider2DExtensions.cs.meta │ │ │ │ ├── CustomPropertyExtensions.cs │ │ │ │ ├── CustomPropertyExtensions.cs.meta │ │ │ │ ├── GameObjectExtensions.cs │ │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ │ ├── RectUtil.cs │ │ │ │ ├── RectUtil.cs.meta │ │ │ │ ├── StreamExtensions.cs │ │ │ │ ├── StreamExtensions.cs.meta │ │ │ │ ├── StringExtensions.cs │ │ │ │ ├── StringExtensions.cs.meta │ │ │ │ ├── SuperLayerExtensions.cs │ │ │ │ ├── SuperLayerExtensions.cs.meta │ │ │ │ ├── SuperMapExtensions.cs │ │ │ │ ├── SuperMapExtensions.cs.meta │ │ │ │ ├── SuperTileExtensions.cs │ │ │ │ ├── SuperTileExtensions.cs.meta │ │ │ │ ├── TypeExtensions.cs │ │ │ │ ├── TypeExtensions.cs.meta │ │ │ │ ├── XmlExtensions.cs │ │ │ │ └── XmlExtensions.cs.meta │ │ │ ├── GUI.meta │ │ │ ├── GUI │ │ │ │ ├── GuiScopedBackgroundColor.cs │ │ │ │ ├── GuiScopedBackgroundColor.cs.meta │ │ │ │ ├── GuiScopedIndent.cs │ │ │ │ └── GuiScopedIndent.cs.meta │ │ │ ├── GlobalTileDatabase.cs │ │ │ ├── GlobalTileDatabase.cs.meta │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── NamedColors.cs │ │ │ │ ├── NamedColors.cs.meta │ │ │ │ ├── ReadOnlyPropertyDrawer.cs │ │ │ │ ├── ReadOnlyPropertyDrawer.cs.meta │ │ │ │ ├── UniqueNameifier.cs │ │ │ │ └── UniqueNameifier.cs.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── SuperIcons.cs │ │ │ │ ├── SuperIcons.cs.meta │ │ │ │ ├── tileset-atlas-file-icon.png │ │ │ │ ├── tileset-atlas-file-icon.png.meta │ │ │ │ ├── tmx-file-icon.png │ │ │ │ ├── tmx-file-icon.png.meta │ │ │ │ ├── tsx-file-icon.png │ │ │ │ ├── tsx-file-icon.png.meta │ │ │ │ ├── tx-file-icon.png │ │ │ │ ├── tx-file-icon.png.meta │ │ │ │ ├── world-file-icon.png │ │ │ │ └── world-file-icon.png.meta │ │ │ ├── Importers.meta │ │ │ ├── Importers │ │ │ │ ├── ImporterConstants.cs │ │ │ │ ├── ImporterConstants.cs.meta │ │ │ │ ├── LayerSorterHelper.cs │ │ │ │ ├── LayerSorterHelper.cs.meta │ │ │ │ ├── RendererSorter.cs │ │ │ │ ├── RendererSorter.cs.meta │ │ │ │ ├── SuperImportContext.cs │ │ │ │ ├── SuperImportContext.cs.meta │ │ │ │ ├── SuperImporter.cs │ │ │ │ ├── SuperImporter.cs.meta │ │ │ │ ├── SuperImporterEditor.cs │ │ │ │ ├── SuperImporterEditor.cs.meta │ │ │ │ ├── TiledAssetImporter.cs │ │ │ │ ├── TiledAssetImporter.cs.meta │ │ │ │ ├── TiledAssetImporterEditor.cs │ │ │ │ ├── TiledAssetImporterEditor.cs.meta │ │ │ │ ├── TilesetAtlasImporter.cs │ │ │ │ ├── TilesetAtlasImporter.cs.meta │ │ │ │ ├── TmxAssetImporter.GroupLayer.cs │ │ │ │ ├── TmxAssetImporter.GroupLayer.cs.meta │ │ │ │ ├── TmxAssetImporter.ImageLayer.cs │ │ │ │ ├── TmxAssetImporter.ImageLayer.cs.meta │ │ │ │ ├── TmxAssetImporter.ObjectLayer.cs │ │ │ │ ├── TmxAssetImporter.ObjectLayer.cs.meta │ │ │ │ ├── TmxAssetImporter.TileLayer.cs │ │ │ │ ├── TmxAssetImporter.TileLayer.cs.meta │ │ │ │ ├── TmxAssetImporter.cs │ │ │ │ ├── TmxAssetImporter.cs.meta │ │ │ │ ├── TmxAssetImporterEditor.cs │ │ │ │ ├── TmxAssetImporterEditor.cs.meta │ │ │ │ ├── TsxAssetImporter.cs │ │ │ │ ├── TsxAssetImporter.cs.meta │ │ │ │ ├── TsxAssetImporterEditor.cs │ │ │ │ ├── TsxAssetImporterEditor.cs.meta │ │ │ │ ├── TxAssetImporter.cs │ │ │ │ ├── TxAssetImporter.cs.meta │ │ │ │ ├── TxAssetImporterEditor.cs │ │ │ │ ├── TxAssetImporterEditor.cs.meta │ │ │ │ ├── WorldAssetImporter.cs │ │ │ │ ├── WorldAssetImporter.cs.meta │ │ │ │ ├── WorldAssetImporterEditor.cs │ │ │ │ └── WorldAssetImporterEditor.cs.meta │ │ │ ├── LayerIgnoreMode.cs │ │ │ ├── LayerIgnoreMode.cs.meta │ │ │ ├── Loaders.meta │ │ │ ├── Loaders │ │ │ │ ├── CustomPropertyLoader.cs │ │ │ │ ├── CustomPropertyLoader.cs.meta │ │ │ │ ├── SuperGroupLayerLoader.cs │ │ │ │ ├── SuperGroupLayerLoader.cs.meta │ │ │ │ ├── SuperImageLayerLoader.cs │ │ │ │ ├── SuperImageLayerLoader.cs.meta │ │ │ │ ├── SuperLayerLoader.cs │ │ │ │ ├── SuperLayerLoader.cs.meta │ │ │ │ ├── SuperObjectLayerLoader.cs │ │ │ │ ├── SuperObjectLayerLoader.cs.meta │ │ │ │ ├── SuperTileLayerLoader.cs │ │ │ │ ├── SuperTileLayerLoader.cs.meta │ │ │ │ ├── Tileset.meta │ │ │ │ └── Tileset │ │ │ │ │ ├── TilesetAssetResolver.cs │ │ │ │ │ ├── TilesetAssetResolver.cs.meta │ │ │ │ │ ├── TilesetAssetResolverAseprite.cs │ │ │ │ │ ├── TilesetAssetResolverAseprite.cs.meta │ │ │ │ │ ├── TilesetAssetResolverError.cs │ │ │ │ │ ├── TilesetAssetResolverError.cs.meta │ │ │ │ │ ├── TilesetAssetResolverFactory.cs │ │ │ │ │ ├── TilesetAssetResolverFactory.cs.meta │ │ │ │ │ ├── TilesetAssetResolverTexture.cs │ │ │ │ │ ├── TilesetAssetResolverTexture.cs.meta │ │ │ │ │ ├── TilesetLoader.cs │ │ │ │ │ └── TilesetLoader.cs.meta │ │ │ ├── Math.meta │ │ │ ├── Math │ │ │ │ ├── ColliderFactory.cs │ │ │ │ ├── ColliderFactory.cs.meta │ │ │ │ ├── ColliderFactoryIsometric.cs │ │ │ │ ├── ColliderFactoryIsometric.cs.meta │ │ │ │ ├── ColliderFactoryOrthogonal.cs │ │ │ │ ├── ColliderFactoryOrthogonal.cs.meta │ │ │ │ ├── PolygonUtils.cs │ │ │ │ └── PolygonUtils.cs.meta │ │ │ ├── ObjectTemplate.cs │ │ │ ├── ObjectTemplate.cs.meta │ │ │ ├── Path.meta │ │ │ ├── Path │ │ │ │ ├── ChDir.cs │ │ │ │ └── ChDir.cs.meta │ │ │ ├── Postprocessors.meta │ │ │ ├── Postprocessors │ │ │ │ ├── AssetDependencies.cs │ │ │ │ ├── AssetDependencies.cs.meta │ │ │ │ ├── SuperAssetDependencyPostprocessor.cs │ │ │ │ ├── SuperAssetDependencyPostprocessor.cs.meta │ │ │ │ ├── SuperTexturePostprocessor.cs │ │ │ │ ├── SuperTexturePostprocessor.cs.meta │ │ │ │ ├── TiledAssetDependencies.cs │ │ │ │ └── TiledAssetDependencies.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── CustomObjectType.cs │ │ │ │ └── CustomObjectType.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── CustomPropertiesWindow.cs │ │ │ │ ├── CustomPropertiesWindow.cs.meta │ │ │ │ ├── LayerMaterialMatch.cs │ │ │ │ ├── LayerMaterialMatch.cs.meta │ │ │ │ ├── ST2USettings.cs │ │ │ │ ├── ST2USettings.cs.meta │ │ │ │ ├── ST2USettingsProvider.cs │ │ │ │ ├── ST2USettingsProvider.cs.meta │ │ │ │ ├── TypePrefabReplacement.cs │ │ │ │ └── TypePrefabReplacement.cs.meta │ │ │ ├── SortingMode.cs │ │ │ ├── SortingMode.cs.meta │ │ │ ├── StringConstants.cs │ │ │ ├── StringConstants.cs.meta │ │ │ ├── ThirdParty.meta │ │ │ ├── ThirdParty │ │ │ │ ├── LibTessDotNet.meta │ │ │ │ ├── LibTessDotNet │ │ │ │ │ ├── Dict.cs │ │ │ │ │ ├── Dict.cs.meta │ │ │ │ │ ├── Geom.cs │ │ │ │ │ ├── Geom.cs.meta │ │ │ │ │ ├── Mesh.cs │ │ │ │ │ ├── Mesh.cs.meta │ │ │ │ │ ├── MeshUtils.cs │ │ │ │ │ ├── MeshUtils.cs.meta │ │ │ │ │ ├── PriorityHeap.cs │ │ │ │ │ ├── PriorityHeap.cs.meta │ │ │ │ │ ├── PriorityQueue.cs │ │ │ │ │ ├── PriorityQueue.cs.meta │ │ │ │ │ ├── Sweep.cs │ │ │ │ │ ├── Sweep.cs.meta │ │ │ │ │ ├── Tess.cs │ │ │ │ │ └── Tess.cs.meta │ │ │ │ ├── MultiValueDictionary.cs │ │ │ │ ├── MultiValueDictionary.cs.meta │ │ │ │ ├── clipper.cs │ │ │ │ └── clipper.cs.meta │ │ │ ├── TileIdMath.cs │ │ │ ├── TileIdMath.cs.meta │ │ │ ├── Tiles.meta │ │ │ ├── Tiles │ │ │ │ ├── BadTileSpriteProvider.cs │ │ │ │ ├── BadTileSpriteProvider.cs.meta │ │ │ │ ├── BadTileTextures.asset │ │ │ │ ├── BadTileTextures.asset.meta │ │ │ │ ├── BadTileTextures.cs │ │ │ │ └── BadTileTextures.cs.meta │ │ │ ├── Windows.meta │ │ │ ├── Windows │ │ │ │ ├── RecursiveAssetDependencyTracker.cs │ │ │ │ ├── RecursiveAssetDependencyTracker.cs.meta │ │ │ │ ├── SuperPackageExport.cs │ │ │ │ └── SuperPackageExport.cs.meta │ │ │ ├── seanba.super-tiled2unity.Editor.asmdef │ │ │ └── seanba.super-tiled2unity.Editor.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── CollisionObject.cs │ │ │ ├── CollisionObject.cs.meta │ │ │ ├── CollisionShapeType.cs │ │ │ ├── CollisionShapeType.cs.meta │ │ │ ├── CustomProperty.cs │ │ │ ├── CustomProperty.cs.meta │ │ │ ├── Errors.meta │ │ │ ├── Errors │ │ │ │ ├── ImportErrors.cs │ │ │ │ └── ImportErrors.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── CustomPropertyExtensions.cs │ │ │ │ ├── CustomPropertyExtensions.cs.meta │ │ │ │ ├── EnumerableExtensions.cs │ │ │ │ ├── EnumerableExtensions.cs.meta │ │ │ │ ├── GameObjectExtensions.cs │ │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ │ ├── StringExtensions.cs │ │ │ │ ├── StringExtensions.cs.meta │ │ │ │ ├── SuperTileExtensions.cs │ │ │ │ └── SuperTileExtensions.cs.meta │ │ │ ├── FillMode.cs │ │ │ ├── FillMode.cs.meta │ │ │ ├── FlipFlags.cs │ │ │ ├── FlipFlags.cs.meta │ │ │ ├── GridOrientation.cs │ │ │ ├── GridOrientation.cs.meta │ │ │ ├── MapOrientation.cs │ │ │ ├── MapOrientation.cs.meta │ │ │ ├── MapRenderOrder.cs │ │ │ ├── MapRenderOrder.cs.meta │ │ │ ├── Math.meta │ │ │ ├── Math │ │ │ │ ├── MatrixUtils.cs │ │ │ │ └── MatrixUtils.cs.meta │ │ │ ├── ObjectAlignment.cs │ │ │ ├── ObjectAlignment.cs.meta │ │ │ ├── ReadOnlyAttribute.cs │ │ │ ├── ReadOnlyAttribute.cs.meta │ │ │ ├── StaggerAxis.cs │ │ │ ├── StaggerAxis.cs.meta │ │ │ ├── StaggerIndex.cs │ │ │ ├── StaggerIndex.cs.meta │ │ │ ├── SuperColliderComponent.cs │ │ │ ├── SuperColliderComponent.cs.meta │ │ │ ├── SuperCustomProperties.cs │ │ │ ├── SuperCustomProperties.cs.meta │ │ │ ├── SuperGroupLayer.cs │ │ │ ├── SuperGroupLayer.cs.meta │ │ │ ├── SuperImageLayer.cs │ │ │ ├── SuperImageLayer.cs.meta │ │ │ ├── SuperLayer.cs │ │ │ ├── SuperLayer.cs.meta │ │ │ ├── SuperMap.cs │ │ │ ├── SuperMap.cs.meta │ │ │ ├── SuperObject.cs │ │ │ ├── SuperObject.cs.meta │ │ │ ├── SuperObjectLayer.cs │ │ │ ├── SuperObjectLayer.cs.meta │ │ │ ├── SuperTileLayer.cs │ │ │ ├── SuperTileLayer.cs.meta │ │ │ ├── SuperTilesAsObjectsTilemap.cs │ │ │ ├── SuperTilesAsObjectsTilemap.cs.meta │ │ │ ├── SuperTileset.cs │ │ │ ├── SuperTileset.cs.meta │ │ │ ├── SuperWorld.cs │ │ │ ├── SuperWorld.cs.meta │ │ │ ├── TileObjectAnimator.cs │ │ │ ├── TileObjectAnimator.cs.meta │ │ │ ├── TileRenderSize.cs │ │ │ ├── TileRenderSize.cs.meta │ │ │ ├── Tiles.meta │ │ │ ├── Tiles │ │ │ │ ├── SuperBadTile.cs │ │ │ │ ├── SuperBadTile.cs.meta │ │ │ │ ├── SuperTile.cs │ │ │ │ ├── SuperTile.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── bad-tile-00.png │ │ │ │ │ ├── bad-tile-00.png.meta │ │ │ │ │ ├── bad-tile-01.png │ │ │ │ │ ├── bad-tile-01.png.meta │ │ │ │ │ ├── bad-tile-02.png │ │ │ │ │ ├── bad-tile-02.png.meta │ │ │ │ │ ├── bad-tile-03.png │ │ │ │ │ ├── bad-tile-03.png.meta │ │ │ │ │ ├── bad-tile-04.png │ │ │ │ │ ├── bad-tile-04.png.meta │ │ │ │ │ ├── bad-tile-05.png │ │ │ │ │ ├── bad-tile-05.png.meta │ │ │ │ │ ├── bad-tile-06.png │ │ │ │ │ ├── bad-tile-06.png.meta │ │ │ │ │ ├── bad-tile-07.png │ │ │ │ │ ├── bad-tile-07.png.meta │ │ │ │ │ ├── bad-tile-08.png │ │ │ │ │ ├── bad-tile-08.png.meta │ │ │ │ │ ├── bad-tile-09.png │ │ │ │ │ ├── bad-tile-09.png.meta │ │ │ │ │ ├── bad-tile-10.png │ │ │ │ │ └── bad-tile-10.png.meta │ │ │ │ ├── TilesetSprites.cs │ │ │ │ └── TilesetSprites.cs.meta │ │ │ ├── seanba.super-tiled2unity.asmdef │ │ │ └── seanba.super-tiled2unity.asmdef.meta │ │ ├── Samples~ │ │ │ ├── Aseprite │ │ │ │ ├── ASE_numbers.aseprite │ │ │ │ ├── ASE_numbers.aseprite.meta │ │ │ │ ├── S_ase_testing.unity │ │ │ │ ├── S_ase_testing.unity.meta │ │ │ │ ├── TMX_numbers.tmx │ │ │ │ ├── TMX_numbers.tmx.meta │ │ │ │ ├── TSX_numbers.tsx │ │ │ │ └── TSX_numbers.tsx.meta │ │ │ ├── Overhead │ │ │ │ ├── Maps.meta │ │ │ │ ├── Maps │ │ │ │ │ ├── TestOverhead.tmx │ │ │ │ │ ├── TestOverhead.tmx.meta │ │ │ │ │ ├── Zoria Tileset.meta │ │ │ │ │ └── Zoria Tileset │ │ │ │ │ │ ├── gui.png │ │ │ │ │ │ ├── gui.png.meta │ │ │ │ │ │ ├── mockups.png │ │ │ │ │ │ ├── mockups.png.meta │ │ │ │ │ │ ├── overhead-objects.tsx │ │ │ │ │ │ ├── overhead-objects.tsx.meta │ │ │ │ │ │ ├── pillar.png │ │ │ │ │ │ ├── pillar.png.meta │ │ │ │ │ │ ├── pilllar-broken.png │ │ │ │ │ │ ├── pilllar-broken.png.meta │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── readme.txt.meta │ │ │ │ │ │ ├── scraps.png │ │ │ │ │ │ ├── scraps.png.meta │ │ │ │ │ │ ├── scraps.tsx │ │ │ │ │ │ ├── scraps.tsx.meta │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── sprites.png.meta │ │ │ │ │ │ ├── tiles.png │ │ │ │ │ │ ├── tiles.png.meta │ │ │ │ │ │ ├── tiles.tsx │ │ │ │ │ │ ├── tiles.tsx.meta │ │ │ │ │ │ ├── water.png │ │ │ │ │ │ ├── water.png.meta │ │ │ │ │ │ ├── water.tsx │ │ │ │ │ │ ├── water.tsx.meta │ │ │ │ │ │ ├── waterfall.png │ │ │ │ │ │ └── waterfall.png.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── MegaDad.meta │ │ │ │ │ ├── MegaDad │ │ │ │ │ │ ├── Idle-down.anim │ │ │ │ │ │ ├── Idle-down.anim.meta │ │ │ │ │ │ ├── Idle-left.anim │ │ │ │ │ │ ├── Idle-left.anim.meta │ │ │ │ │ │ ├── Idle-right.anim │ │ │ │ │ │ ├── Idle-right.anim.meta │ │ │ │ │ │ ├── Idle-up.anim │ │ │ │ │ │ ├── Idle-up.anim.meta │ │ │ │ │ │ ├── MegaDad-controller.controller │ │ │ │ │ │ ├── MegaDad-controller.controller.meta │ │ │ │ │ │ ├── MegaDad-sheet.png │ │ │ │ │ │ ├── MegaDad-sheet.png.meta │ │ │ │ │ │ ├── MegaDad.prefab │ │ │ │ │ │ ├── MegaDad.prefab.meta │ │ │ │ │ │ ├── OverheadMegaDadController.cs │ │ │ │ │ │ ├── OverheadMegaDadController.cs.meta │ │ │ │ │ │ ├── Walk-down.anim │ │ │ │ │ │ ├── Walk-down.anim.meta │ │ │ │ │ │ ├── Walk-left.anim │ │ │ │ │ │ ├── Walk-left.anim.meta │ │ │ │ │ │ ├── Walk-right.anim │ │ │ │ │ │ ├── Walk-right.anim.meta │ │ │ │ │ │ ├── Walk-up.anim │ │ │ │ │ │ └── Walk-up.anim.meta │ │ │ │ │ ├── Splash.meta │ │ │ │ │ └── Splash │ │ │ │ │ │ ├── Splash.prefab │ │ │ │ │ │ ├── Splash.prefab.meta │ │ │ │ │ │ ├── splash-anim.anim │ │ │ │ │ │ ├── splash-anim.anim.meta │ │ │ │ │ │ ├── splash-ctrl.controller │ │ │ │ │ │ ├── splash-ctrl.controller.meta │ │ │ │ │ │ ├── splash.png │ │ │ │ │ │ └── splash.png.meta │ │ │ │ ├── overhead.unity │ │ │ │ └── overhead.unity.meta │ │ │ └── Seams │ │ │ │ ├── SA_Example.spriteatlas │ │ │ │ ├── SA_Example.spriteatlas.meta │ │ │ │ ├── S_Seams.unity │ │ │ │ ├── S_Seams.unity.meta │ │ │ │ ├── SeamMaker.cs │ │ │ │ ├── SeamMaker.cs.meta │ │ │ │ ├── TMap_WithSeams.tmx │ │ │ │ ├── TMap_WithSeams.tmx.meta │ │ │ │ ├── TMap_WithoutSeams.tmx │ │ │ │ ├── TMap_WithoutSeams.tmx.meta │ │ │ │ ├── TTileAtlas_Example.st2u_atlas │ │ │ │ ├── TTileAtlas_Example.st2u_atlas.meta │ │ │ │ ├── TTiles_Letters.tsx │ │ │ │ ├── TTiles_Letters.tsx.meta │ │ │ │ ├── TTiles_Letters_PutInAtlas.tsx │ │ │ │ ├── TTiles_Letters_PutInAtlas.tsx.meta │ │ │ │ ├── T_Letters.png │ │ │ │ └── T_Letters.png.meta │ │ ├── Third Party Notices.md │ │ ├── Third Party Notices.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── SuperTiled2Unity.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── deploy ├── com.seanba.super-tiled2unity.zip ├── deploy-package.ps1 ├── super-tiled2unity.v2.0.0.zip ├── super-tiled2unity.v2.0.1.zip ├── super-tiled2unity.v2.1.0.zip ├── super-tiled2unity.v2.1.1.zip ├── super-tiled2unity.v2.2.0.zip ├── super-tiled2unity.v2.2.1.zip ├── super-tiled2unity.v2.2.2.zip ├── super-tiled2unity.v2.2.3.zip ├── super-tiled2unity.v2.2.4.zip ├── super-tiled2unity.v2.2.5.zip ├── super-tiled2unity.v2.3.0.zip └── super-tiled2unity.v2.3.1.zip └── docs ├── Makefile ├── _static └── theme_overrides.css ├── auto-run-local.bat ├── conf.py ├── img ├── docs_logo.png ├── mega-dad-stand.png ├── settings-importer.png ├── st2u-package-installed.png ├── tmx-importer.png └── unity-super-metroid.png ├── index.rst ├── make.bat └── manual ├── custom-properties-importing.rst ├── custom-properties.rst ├── extending-the-importer.rst ├── img ├── custom-props │ └── custom-prop-ignore.png ├── objects-xml │ ├── custom-object-types-window.png │ ├── export-objects-types.png │ ├── export-save-dialog.png │ ├── object-types-editor.png │ ├── props-tiled.png │ ├── props-unity.png │ ├── st2u-project-settings-object-xml.png │ └── unity-projects-settings-menuitem.png ├── pipeline │ └── custom-importer-header.png └── sort │ ├── column-five.png │ ├── column-four.png │ ├── column-three.png │ ├── column-two.png │ ├── default-player-sky-sorting.png │ ├── default-player-sorting.png │ ├── default-sorting.png │ ├── example-sorting.png │ ├── overhead-example-anim.gif │ ├── sort-tile-objects.png │ ├── sorting-options.png │ ├── tagman-sort-player.png │ ├── tiled-custom-prop-player.png │ ├── tiled-custom-prop-sky.png │ ├── tileset-collection-images.png │ ├── unity-importer-csa.png │ └── unity-settings-csa.png └── sorting.rst /.gitattributes: -------------------------------------------------------------------------------- 1 | *.anim text eol=lf 2 | *.asmdef text eol=lf 3 | *.asset text eol=lf 4 | *.controller text eol=lf 5 | *.json text eol=lf 6 | *.mat text eol=lf 7 | *.meta text eol=lf 8 | *.physicsMaterial2D text eol=lf 9 | *.prefab text eol=lf 10 | *.renderTexture text eol=lf 11 | *.spriteatlas text eol=lf 12 | *.tpsheet text eol=lf 13 | *.unity text eol=lf 14 | ProjectVersion.txt text eol=lf 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7da0154eb0c27834d8f37a46c10296d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c0960bc30b8cc44aa4885849f380d70 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aec2744d16f48d0408ba3baf85059216 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7d84131eabf8a243b60b3e5922a4966 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/ASE_numbers.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/ASE_numbers.aseprite -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/S_ase_testing.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f06b78d7de89a874da80726120be46f3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/TMX_numbers.tmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 1,2,3, 7 | 4,5,6, 8 | 7,8,9 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/TMX_numbers.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4d98fee6a67540468b46466c316fc00 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 33 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/TSX_numbers.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Aseprite/TSX_numbers.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8331f9f9f17cc0642b90b0de7a5b76de 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 22 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 47 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2499e2f8b837dc548a217b42f7477a18 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d60c715763d55a41b77931785720afc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db0ec50390b7e2d468038a2370374718 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/gui.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/mockups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/mockups.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/overhead-objects.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/pillar.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/pilllar-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/pilllar-broken.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8700fc57188a60e45b3c36bc34e0ff05 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/scraps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/scraps.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/scraps.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/sprites.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/tiles.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/water.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/waterfall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Maps/Zoria Tileset/waterfall.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62031037bfe06d140942adba88bdd8c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2576711ff75da14ead8c396884c0f76 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Idle-down.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 104204d4687ea254a977033f36c35b36 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Idle-left.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95294e9b4613eb4795be90ff4a6fee5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Idle-right.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3a31488455636469ac5abd836b2423 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Idle-up.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6033fa5ac0c089d4ab50a0ac05de7b47 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/MegaDad-controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63be1058a7c60fa43b128a4769eeb17e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/MegaDad-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/MegaDad-sheet.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/MegaDad.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b256ddac5c33133449143b5aa4810a22 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/OverheadMegaDadController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b50a2addbb13264aa0575d4635620ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Walk-down.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dcf0cc6caa606f4ab8e9b66d9fc3c0d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Walk-left.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b29484152c89bb84ca4f06ec05cee03f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Walk-right.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6703c709761684147bdff9f2c1257af8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/MegaDad/Walk-up.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b73360dd1b69a5d41a3da7cfa96f1429 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 717155d09644a49488cfdbab83d66164 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash/Splash.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df520848e060ff94292b085fd6e824ef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash/splash-anim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 001f3cf768ab2034c81c5cf74fb03f7c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash/splash-ctrl.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee78f041e8df21d48a5ca21589b7bd37 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/Sprites/Splash/splash.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/overhead.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 834ee709162f89a4ba9e99a106fc2c00 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2d684cc839546247a5848b2beb845bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/SA_Example.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 359f93bcb8ba4434b925f7f452e42f62 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/S_Seams.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f24d60b0d8f5ba8458978a712722e7a8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/SeamMaker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1eeafaeded752429eca0551f582aa6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TMap_WithSeams.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69f7648afe989a14f9f77bb52de00715 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 33 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TMap_WithoutSeams.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df712813fe686d47bdf996f62b587e3 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 33 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTileAtlas_Example.st2u_atlas: -------------------------------------------------------------------------------- 1 | # Uses Super Tiled2Unity scripted importer for placing tileset sprites in a sprite atlas -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTileAtlas_Example.st2u_atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80acd576469940949aed8d751c32ca4b 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 14bc6dd67b45d094c836611ff82ed592, type: 3} 11 | spriteAtlas: {fileID: 4343727234628468602, guid: 359f93bcb8ba4434b925f7f452e42f62, 12 | type: 2} 13 | tilesets: 14 | - {fileID: -5890959085335758588, guid: 785f3b46764c850448cb9e9d53888dd8, type: 3} 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTiles_Letters.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTiles_Letters.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 031b08b559b51f94283941bc5550f38d 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 22 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 112 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTiles_Letters_PutInAtlas.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/TTiles_Letters_PutInAtlas.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 785f3b46764c850448cb9e9d53888dd8 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 22 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 112 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/T_Letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Assets/Samples/Super Tiled2Unity/2.3.1/Tileset Atlas (Fixing Seams)/T_Letters.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155958f6e6082584ca5410981efdc782 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a841d74f5f8c04a81c7f8a6796c265 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AnimationBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa74cfd34bf503844a16a6affed8d642 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d967b1ed0470b24d8fb429504a3632b 3 | timeCreated: 1517175527 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12678835e2526a6439d505880bd8605c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAsset.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEditor.AssetImporters; 3 | using UnityEngine; 4 | 5 | namespace SuperTiled2Unity.Editor 6 | { 7 | // SuperAsset classes give us the ability to search for Tiled asset types 8 | // They also keep track of references and dependencies 9 | public class SuperAsset : ScriptableObject 10 | { 11 | [SerializeField] 12 | private List m_AssetDependencies = new List(); 13 | 14 | public List AssetDependencies => m_AssetDependencies; 15 | 16 | public void AddDependency(AssetImportContext context, string assetPath) 17 | { 18 | if (!m_AssetDependencies.Contains(assetPath)) 19 | { 20 | context.DependsOnSourceAsset(assetPath); 21 | context.DependsOnArtifact(assetPath); 22 | m_AssetDependencies.Add(assetPath); 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb5e75dfa90548b46af28b1c2069b2ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetMap.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public class SuperAssetMap : SuperAsset 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b9230422fd3f0b4f84aeed3552983e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetSettings.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | // Used to tag assets specific to SuperTiled2Unity 4 | public class SuperAssetSettings : SuperAsset 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87f5be8f60f26a3439d0e9f9e79d57d8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetTemplate.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | // Used to tag assets specific to SuperTiled2Unity 4 | public class SuperAssetTemplate : SuperAsset 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6119748dbc0e7b04ab6829cb5022cb62 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetTileset.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public class SuperAssetTileset : SuperAsset 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetTileset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83a849530c0449a4b8dc4000b60e4acd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetWorld.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public class SuperAssetWorld : SuperAsset 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/AssetTypes/SuperAssetWorld.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6198d56f2f7d004fae311f2554dccd0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 227e2a2dae05a1a45af1b348ba7a4c68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Attributes/AutoCustomTmxImporterAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e774281be74f34043b31411b1383f170 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96fa2b7848fb1da448f0f40273c14938 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/CollisionBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32777aadec3623d4b97d4a3ab62fd92f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/CollisionClipper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9d0aa18280129d42883e9ced3a65733 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/CollisionClipperKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc920922afa553741bd0f227f6835ecf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647d4f3bbde8a9040b0a3395fde097ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/ComposeConvexPolygons.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ade4471a1fe9b004582ec85201b9a444 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/CompositionPolygon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cd0461593f4314a9a6043987d2e95a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/Math.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity.Editor.Geometry 4 | { 5 | public static class GeoMath 6 | { 7 | // Points are ordered CCW with B as the junction 8 | public static float Cross(Vector2 A, Vector2 B, Vector2 C) 9 | { 10 | Vector2 lhs = new Vector2(B.x - A.x, B.y - A.y); 11 | Vector2 rhs = new Vector2(C.x - B.x, C.y - B.y); 12 | return (lhs.x * rhs.y) - (lhs.y * rhs.x); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/Math.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 360e031c5dfae294386ea430999d2a5d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/PolygonEdge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 288cf3ab427702b4187be0f66266c5a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/PolygonEdgeGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 057a306415f72534fa02246cf5b32535 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/PolylineReduction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fd845b7a7d07af4ca4aad8eb4ec21d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/Geometry/Triangulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa0287b5b3e3007418b2cad3c6b8b6ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/TilePolygon.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | public class TilePolygon 6 | { 7 | public int ColliderLayerId { get; set; } 8 | public string ColliderLayerName { get; set; } 9 | public bool IsTrigger { get; set; } 10 | public Vector2[] Points { get; set; } 11 | public bool IsClosed { get; set; } 12 | 13 | public CollisionClipperKey MakeKey() 14 | { 15 | return new CollisionClipperKey(ColliderLayerId, ColliderLayerName, IsTrigger); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/TilePolygon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b962a836d2d3af4ca6dc30fd266397b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Collision/TilePolygonCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8fc268ecca5bbc4c885325c2e8288ba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aeead190a51bd1a4db7123348f138938 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Config/ST2U Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80ddb296022b52a49b10558f444eb1bb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Config/SuperTiled2Unity_Config.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73bf4b0030257904199f741dbf1abcdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomEditors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9c41fa28ec540e42ba9b163a0fac9f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomEditors/ColliderGizmos.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1de2e16268489dc43b1619977f7ea0f0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomEditors/SuperColliderComponentEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ee031c51465665449ce923090251b38 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomEditors/SuperMapEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba25f76519139a8458d816f3df6e7cef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomEditors/SuperWorldEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2472b7d543c70145a75416bd4768997 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomImporters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 770daec7fa936f04faa9e07dfbbe4b8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/CustomImporters/CustomTmxImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07796d8e64535fc41851ffcb6f022255 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DataCompression.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public enum DataCompression 4 | { 5 | None, 6 | Gzip, 7 | Zlib, 8 | Zstd, 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DataCompression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7022995a443f0dc48974a3034eb4b4d8 3 | timeCreated: 1518061370 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DataEncoding.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public enum DataEncoding 4 | { 5 | Xml, 6 | Base64, 7 | Csv, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DataEncoding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9eff9209c4ab374478c9fc12073c865b 3 | timeCreated: 1518061370 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DrawOrder.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public enum DrawOrder 4 | { 5 | TopDown, 6 | Index, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/DrawOrder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cfa0af538223994d88db7bc74b459e7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Errors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a38c8b4dd1d27084e9164b752ba3eead 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Errors/ImportErrorsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e1ca9da80b98b44e822f6b03386f6b4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d77ebfa04758404fa8f76d9d62bd91c 3 | folderAsset: yes 4 | timeCreated: 1517688816 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Exceptions/CustomImporterException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | public class CustomImporterException : Exception 6 | { 7 | public CustomImporterException(string msg) : base(msg) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Exceptions/CustomImporterException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef576cb33d2bff74da4363baa98476db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9907db5974642c243a281cffd42f33c2 3 | folderAsset: yes 4 | timeCreated: 1517173947 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/AppDomainExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf2900f67afa63a4cafd70a0841a9bf1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/ByteExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc3a8b114a4950947aba6626e1039b18 3 | timeCreated: 1518066142 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/Collider2DExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662a1350b1985c04daa5b465599a1866 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/CollisionObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e3ba7f1f3359a4e8797318233a45d1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/CompositeCollider2DExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8a1e4dd208e2fe499c0fc5c875ccd45 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/CustomPropertyExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a95b3732ae5e6d04d9a55bf45d315b48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4964656a27e3d1a4e95232b9e1080913 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/RectUtil.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | public static class RectUtil 6 | { 7 | public static Rect LeftEdge(Rect rc) 8 | { 9 | return new Rect(rc.x, rc.y, 1, rc.height); 10 | } 11 | 12 | public static Rect RightEdge(Rect rc) 13 | { 14 | return new Rect(rc.xMax - 1, rc.y, 1, rc.height); 15 | } 16 | 17 | public static Rect TopEdge(Rect rc) 18 | { 19 | return new Rect(rc.x, rc.yMax - 1, rc.width, 1); 20 | } 21 | 22 | public static Rect BottomEdge(Rect rc) 23 | { 24 | return new Rect(rc.x, rc.y, rc.width, 1); 25 | } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/RectUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baab7f7c1aac1d34ebe570e8e97b1840 3 | timeCreated: 1517895057 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | public static class StreamExtensions 6 | { 7 | public static long CopyTo(this Stream source, Stream destination) 8 | { 9 | byte[] buffer = new byte[1048 * 16]; 10 | int bytesRead; 11 | long totalBytes = 0; 12 | while ((bytesRead = source.Read(buffer, 0, buffer.Length)) > 0) 13 | { 14 | destination.Write(buffer, 0, bytesRead); 15 | totalBytes += bytesRead; 16 | } 17 | return totalBytes; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/StreamExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e590658734d665b40ba3b84ccb7cd59d 3 | timeCreated: 1518066927 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6a7de8e56b00e4aa81837930516fad 3 | timeCreated: 1518066142 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/SuperLayerExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8608888bf777314f85953dd6cac7ba1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/SuperMapExtensions.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | public static class SuperMapExtensions 6 | { 7 | public static Vector2 CellPositionToLocalPosition(this SuperMap superMap, int cx, int cy, SuperImportContext context) 8 | { 9 | var grid = superMap.GetComponentInChildren(); 10 | var local = grid.CellToLocal(new Vector3Int(cx, cy, 0)); 11 | return local; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/SuperMapExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68d3b5d052bf8454a97430d71e1e2114 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/SuperTileExtensions.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.Assertions; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public static class SuperTileExtensions 7 | { 8 | public static void AddCollidersForTileObject(this SuperTile tile, GameObject goParent, SuperImportContext importContext) 9 | { 10 | Assert.IsNotNull(tile); 11 | Assert.IsNotNull(goParent); 12 | Assert.IsNotNull(importContext); 13 | 14 | if (!tile.m_CollisionObjects.IsEmpty()) 15 | { 16 | foreach (var collision in tile.m_CollisionObjects) 17 | { 18 | collision.AddCollider(tile, goParent, importContext); 19 | } 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/SuperTileExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fafb9d96d028914e9ebc2702e268cd6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.ComponentModel; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public static class TypeExtensions 7 | { 8 | public static string GetDisplayName(this Type type) 9 | { 10 | var attribute = Attribute.GetCustomAttribute(type, typeof(DisplayNameAttribute)) as DisplayNameAttribute; 11 | 12 | if (attribute != null) 13 | { 14 | return attribute.DisplayName; 15 | } 16 | 17 | return type.Name; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f206296328d471841b0c0031f0f2a5cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Extensions/XmlExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4daa0d289a9eb0847bbd4aeaec3e7584 3 | timeCreated: 1517173947 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0c8fbd64d2fa8e4dbf2169abee90147 3 | folderAsset: yes 4 | timeCreated: 1517434579 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GUI/GuiScopedBackgroundColor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class GuiScopedBackgroundColor : IDisposable 7 | { 8 | private Color m_DefaultColor; 9 | 10 | public GuiScopedBackgroundColor(Color color) 11 | { 12 | m_DefaultColor = GUI.backgroundColor; 13 | GUI.backgroundColor = color; 14 | } 15 | 16 | public void Dispose() 17 | { 18 | GUI.backgroundColor = m_DefaultColor; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GUI/GuiScopedBackgroundColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c1abf941a68a144184b329cdc63c678 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GUI/GuiScopedIndent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEditor; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class GuiScopedIndent : IDisposable 7 | { 8 | public GuiScopedIndent() 9 | { 10 | EditorGUI.indentLevel++; 11 | } 12 | 13 | public void Dispose() 14 | { 15 | EditorGUI.indentLevel--; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GUI/GuiScopedIndent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8a44729ffe16324ca7e0f047dc5e079 3 | timeCreated: 1517718582 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/GlobalTileDatabase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 325ecefe5027b8b42a7c653ca4af9dfb 3 | timeCreated: 1517455463 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcdcc59f04b68944ebecd3a7d591724b 3 | folderAsset: yes 4 | timeCreated: 1517636873 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Helpers/NamedColors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31a4a8fbeb72ce48be0f17a6b54d5a3 3 | timeCreated: 1517811785 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Helpers/ReadOnlyPropertyDrawer.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; 3 | 4 | 5 | namespace SuperTiled2Unity.Editor 6 | { 7 | [CustomPropertyDrawer(typeof(ReadOnlyAttribute))] 8 | public class ReadOnlyPropertyDrawer : PropertyDrawer 9 | { 10 | public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) 11 | { 12 | GUI.enabled = false; 13 | EditorGUI.PropertyField(position, property, label); 14 | GUI.enabled = true; 15 | } 16 | 17 | public override float GetPropertyHeight(SerializedProperty property, GUIContent label) 18 | { 19 | return EditorGUI.GetPropertyHeight(property, label, true); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Helpers/ReadOnlyPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5060d5a3bd7fd87488fe7bad5dd977df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Helpers/UniqueNameifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 995ac39948f0efc40a7cc75621ac6fcb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e328b0bcf6f3c0d4f8acb2224fd87e60 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/SuperIcons.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | // Collection of icons to be used with SuperTiled2Unity assets 7 | public class SuperIcons : ScriptableSingleton 8 | { 9 | public Texture2D m_TmxIcon; 10 | public Texture2D m_TsxIcon; 11 | public Texture2D m_TxIcon; 12 | public Texture2D m_WorldIcon; 13 | public Texture2D m_TilesetAtlasIcon; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/SuperIcons.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 035702ede6747284cbd71dcd9331db46 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: 7 | - m_TmxIcon: {fileID: 2800000, guid: 3bbe1872cdca28840b24eb648e071bcb, type: 3} 8 | - m_TsxIcon: {fileID: 2800000, guid: 456cd7fe3f53df64da488af63fed1de2, type: 3} 9 | - m_TxIcon: {fileID: 2800000, guid: 8917742d33b8e744f91ec41c4dbb44bc, type: 3} 10 | - m_WorldIcon: {fileID: 2800000, guid: f7af46740b1964f4ab9520d050bdde12, type: 3} 11 | - m_TilesetAtlasIcon: {fileID: 2800000, guid: 781491a88c638dc4c8258a8075583e90, 12 | type: 3} 13 | executionOrder: 0 14 | icon: {instanceID: 0} 15 | userData: 16 | assetBundleName: 17 | assetBundleVariant: 18 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tileset-atlas-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tileset-atlas-file-icon.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tmx-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tmx-file-icon.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tsx-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tsx-file-icon.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tx-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/tx-file-icon.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/world-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Icons/world-file-icon.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb3c65f265b44ee4b90a317f5d00d499 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/ImporterConstants.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public static class ImporterConstants 4 | { 5 | public const int TilesetVersion = 22; 6 | public const int TemplateVersion = 6; 7 | public const int MapVersion = 33; 8 | public const int WorldVersion = 1; 9 | 10 | public const string TilesetExtension = "tsx"; 11 | public const string TemplateExtension = "tx"; 12 | public const string MapExtension = "tmx"; 13 | public const string WorldExtension = "world"; 14 | 15 | // The order we import Tiled assets is important due to dependencies 16 | public const int TilesetImportOrder = 5010; 17 | public const int TemplateImportOrder = 5011; 18 | public const int MapImportOrder = 5012; 19 | public const int WorldImportOrder = 5013; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/ImporterConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a9e1547e8aa7a244bd7467c8a3df1b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/LayerSorterHelper.cs: -------------------------------------------------------------------------------- 1 | // [SuperTiled2Unity deprecated] 2 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/LayerSorterHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31eeb24abf22df043909643826c9c1a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/RendererSorter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6c9fb728bc3c2944a50e9886fac8083 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/SuperImportContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c73831093080f34282b5e25dbe4b498 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/SuperImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 997c350d479469b40a6a61dab58acbf0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/SuperImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11785ba3d6fd01e40bc425b04910de97 3 | timeCreated: 1517685137 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TiledAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a888f767b6df9e34b874a40c13fdbf58 3 | timeCreated: 1516558208 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TiledAssetImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f677b7b9e54b2ee469a77e6984caa343 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TilesetAtlasImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14bc6dd67b45d094c836611ff82ed592 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.GroupLayer.cs: -------------------------------------------------------------------------------- 1 | using System.Xml.Linq; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public partial class TmxAssetImporter 7 | { 8 | private SuperLayer ProcessGroupLayer(GameObject goParent, XElement xGroup) 9 | { 10 | var groupLayerComponent = goParent.AddSuperLayerGameObject(new SuperGroupLayerLoader(xGroup, this), SuperImportContext); 11 | AddSuperCustomProperties(groupLayerComponent.gameObject, xGroup.Element("properties")); 12 | 13 | // Group layers can contain other layers 14 | RendererSorter.BeginGroupLayer(groupLayerComponent); 15 | 16 | using (SuperImportContext.BeginIsTriggerOverride(groupLayerComponent.gameObject)) 17 | { 18 | ProcessMapLayers(groupLayerComponent.gameObject, xGroup); 19 | } 20 | 21 | RendererSorter.EndGroupLayer(); 22 | 23 | return groupLayerComponent; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.GroupLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e23608685274fc4d87ad50a12608833 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.ImageLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaf3a34fd04f5c848a52a87cc760bf0c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.ObjectLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3d050ab15e05e64485232b07c377d1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.TileLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7821ed78f6c789f458a18526a5a20d7e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fa25d03934ea624a82bf2fcee6f0873 3 | timeCreated: 1517288362 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TmxAssetImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 663bd83c73616d340a0707fb3dc86b44 3 | timeCreated: 1518065027 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TsxAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc34d0f3dc257a442819830b408c5322 3 | timeCreated: 1516558208 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TsxAssetImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00a8cd6901ddc6b44bebdeadf6163d63 3 | timeCreated: 1517166751 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TxAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4426ef1bd8d94d242b03d3dc2d544b32 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/TxAssetImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8fe4d5047b6af429cc3337027f12ce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/WorldAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6b19dac32d07094ca0a4ffc902a36c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/WorldAssetImporterEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace SuperTiled2Unity.Editor 4 | { 5 | [CanEditMultipleObjects] 6 | [CustomEditor(typeof(WorldAssetImporter))] 7 | class WorldAssetImporterEditor : TiledAssetImporterEditor 8 | { 9 | protected override string EditorLabel 10 | { 11 | get { return "Tiled World Importer (.world files)"; } 12 | } 13 | 14 | protected override string EditorDefinition 15 | { 16 | get { return "This imports Tiled world files (*.world) and creates a prefab of your world to be added to your scenes."; } 17 | } 18 | 19 | protected override void InternalOnInspectorGUI() 20 | { 21 | //EditorGUILayout.LabelField("Tiled World Importer Settings", EditorStyles.boldLabel); 22 | InternalApplyRevertGUI(); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Importers/WorldAssetImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30744b74a3292c84794410430bba0b1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/LayerIgnoreMode.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public enum LayerIgnoreMode 4 | { 5 | // Ingores nothing (layer is fully enabled) 6 | False, 7 | 8 | // Ignore everything on the layer 9 | True, 10 | 11 | // Ignores colliders on the layer (visuals are imported) 12 | Collision, 13 | 14 | // Ignores visuals on the layers (colliders still imported) 15 | Visual, 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/LayerIgnoreMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0cf98038b6a2f45b2d8ab7888355e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5d923bdf45fc5f4c8e2106ad79cea01 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/CustomPropertyLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ffe19ff319af474d9c3709da2789720 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperGroupLayerLoader.cs: -------------------------------------------------------------------------------- 1 | using System.Xml.Linq; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class SuperGroupLayerLoader : SuperLayerLoader 7 | { 8 | public SuperGroupLayerLoader(XElement xml, TiledAssetImporter importer) 9 | : base(xml, importer) 10 | { 11 | } 12 | 13 | protected override SuperLayer CreateLayerComponent(GameObject go) 14 | { 15 | return go.AddComponent(); 16 | } 17 | 18 | protected override void InternalLoadFromXml(GameObject go) 19 | { 20 | // No extra data to load from the xml 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperGroupLayerLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7519185f6242f80418c1f98739b75f79 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperImageLayerLoader.cs: -------------------------------------------------------------------------------- 1 | using System.Xml.Linq; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class SuperImageLayerLoader : SuperLayerLoader 7 | { 8 | public SuperImageLayerLoader(XElement xml, TiledAssetImporter importer) 9 | : base(xml, importer) 10 | { 11 | } 12 | 13 | protected override SuperLayer CreateLayerComponent(GameObject go) 14 | { 15 | return go.AddComponent(); 16 | } 17 | 18 | protected override void InternalLoadFromXml(GameObject go) 19 | { 20 | // No extra data to load from the xml 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperImageLayerLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52e94c587bfda334cbca886bec660974 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperLayerLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab5b5345df240a4c977c049aa5d1b5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperObjectLayerLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aefa98014cf08f64683d6b99e200497c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperTileLayerLoader.cs: -------------------------------------------------------------------------------- 1 | using System.Xml.Linq; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class SuperTileLayerLoader : SuperLayerLoader 7 | { 8 | public SuperTileLayerLoader(XElement xml, TiledAssetImporter importer) 9 | : base(xml, importer) 10 | { 11 | } 12 | 13 | protected override SuperLayer CreateLayerComponent(GameObject go) 14 | { 15 | return go.AddComponent(); 16 | } 17 | 18 | protected override void InternalLoadFromXml(GameObject go) 19 | { 20 | // No extra data to load from the xml 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/SuperTileLayerLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4100ed00b551e2c45aa3cab854a3b513 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 154bb7bd9ec560643b46ce0487f854c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abf130897d558844281242d46fa11434 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolverAseprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b1fac9dd2e8d484c895ec14be78a989 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolverError.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | // The resolver to use when we have an issue with the source asset for tilesets 4 | internal sealed class TilesetAssetResolverError : TilesetAssetResolver 5 | { 6 | public TilesetAssetResolverError(string sourceAssetPath, TiledAssetImporter tiledAssetImporter, SuperTileset superTileset) 7 | : base(sourceAssetPath, tiledAssetImporter, superTileset) 8 | { 9 | } 10 | 11 | public override bool AddSpritesAndTile(int tileId, int srcx, int srcy, int tileWidth, int tileHeight) 12 | { 13 | return false; 14 | } 15 | 16 | protected override void OnPrepare() 17 | { 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolverError.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dad4e9afbc13f3c48b8a09f97ff443f7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolverFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3aaa35b8e8bea48478321ec14a499946 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetAssetResolverTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728a8f07235889b47b39268afd713897 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Loaders/Tileset/TilesetLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c105d7184cafec4ba0537744947997a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a72cf19450cbc6244954a58e628e60f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Math/ColliderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a583b223a57da264e99d3334c086fa5a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Math/ColliderFactoryIsometric.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc07e3d6880ec8c49bdc2d60b9a1d1df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Math/ColliderFactoryOrthogonal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55d9524a7f13c664f925b8695cd8402a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Math/PolygonUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2766d062892bbd4f932a20d3a3122af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ObjectTemplate.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class ObjectTemplate : ScriptableObject 7 | { 8 | public string m_ObjectXml; 9 | public SuperTile m_Tile; 10 | public List m_CustomProperties; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ObjectTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39aff3970f857ec4a8823c0291cba854 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Path.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a944b86ee0f918043b1b4844e2d075d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Path/ChDir.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8f1b31d17390bc44945f68f29b90c24 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ebba7aa590aeba4ea01a3d8c5b19122 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors/AssetDependencies.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc91e788c0b3e5c418694a8b93ab14a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors/SuperAssetDependencyPostprocessor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEditor; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | public class SuperAssetDependencyPostprocessor : AssetPostprocessor 7 | { 8 | private static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths) 9 | { 10 | // Refresh dependencies for our imported object 11 | foreach (var assetPath in importedAssets) 12 | { 13 | if (assetPath.StartsWith("Assets/", StringComparison.OrdinalIgnoreCase)) 14 | { 15 | TiledAssetDependencies.Instance.TrackDependencies(assetPath); 16 | } 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors/SuperAssetDependencyPostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5375898aae950549a1f40d3bd696272 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors/SuperTexturePostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56b6d48e2f3d90d47b9d0b396347b6e7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Postprocessors/TiledAssetDependencies.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0f2386fad48a8f4d855c5c0ede7c18c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7050b2afc669be4fbf2bfcb4aeafe2f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Properties/CustomObjectType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using UnityEngine; 5 | 6 | namespace SuperTiled2Unity.Editor 7 | { 8 | [Serializable] 9 | public class CustomObjectType 10 | { 11 | public string m_Name; 12 | public Color m_Color; 13 | public List m_CustomProperties; 14 | } 15 | 16 | public static class CustomObjectTypeExtensions 17 | { 18 | public static bool TryGetCustomObjectType(this List list, string type, out CustomObjectType customObjectType) 19 | { 20 | if (list.IsEmpty()) 21 | { 22 | customObjectType = null; 23 | return false; 24 | } 25 | 26 | customObjectType = list.FirstOrDefault(o => o.m_Name.Equals(type, StringComparison.OrdinalIgnoreCase)); 27 | return customObjectType != null; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Properties/CustomObjectType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d6063cd2a5219f448ae88f3b5dfb243 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0ef40eb187c4ce4aa6787cac7a5dc7f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/CustomPropertiesWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7b4491335815674c98267f0c92f634c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/LayerMaterialMatch.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | [Serializable] 7 | public class LayerMaterialMatch 8 | { 9 | public string m_LayerName; 10 | public Material m_Material; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/LayerMaterialMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af7db2f22a062814992acbee2628e7ea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/ST2USettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff72ddc2da234e244a8e96eb44e4c03d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {fileID: 2800000, guid: 0016a15d29ea344499f092ce94b25a68, type: 3} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/ST2USettingsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b6c8e89bac149419fd0d075085f960 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/TypePrefabReplacement.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity.Editor 5 | { 6 | [Serializable] 7 | public class TypePrefabReplacement 8 | { 9 | public string m_TypeName; 10 | public GameObject m_Prefab; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Settings/TypePrefabReplacement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a3413fe0dedc934a9749faafcfa0077 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/SortingMode.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public enum SortingMode 4 | { 5 | Stacked = 0, 6 | CustomSortAxis, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/SortingMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5abb1a5e2d79034c8cff6e5348085f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/StringConstants.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity.Editor 2 | { 3 | public static class StringConstants 4 | { 5 | public const string Unity_Prefix = "unity:"; 6 | public const string Unity_Ignore = Unity_Prefix + "ignore"; 7 | public const string Unity_IsTrigger = Unity_Prefix + "IsTrigger"; 8 | public const string Unity_Layer = Unity_Prefix + "layer"; 9 | public const string Unity_SortingLayer = Unity_Prefix + "SortingLayer"; 10 | public const string Unity_SortingLayerName = Unity_Prefix + "SortingLayerName"; 11 | public const string Unity_SortingOrder = Unity_Prefix + "SortingOrder"; 12 | public const string Unity_Tag = Unity_Prefix + "tag"; 13 | public const string Unity_ZPosition = Unity_Prefix + "z-pos"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/StringConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6327b45087f5beb4da4569eddb17253d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 806c7333901f78144a1856e4bf934a7b 3 | folderAsset: yes 4 | timeCreated: 1517785299 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e4a99e52ce663e409caaffeca343e06 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/Dict.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53df28af8cabc3442afe3fa83ca94731 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/Geom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c42c9eb9b131da7479aca40802a962b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/Mesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 895574c79cf1f4140acf071b46a62b80 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/MeshUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 150047422c973bd4fa52808c8241a0d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/PriorityHeap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0709e293685a7694fb6e3bdf1483f65b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/PriorityQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe69d099d524bc74d8de95bea8ff1d80 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/Sweep.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70894d2af6f39db4bae92827a38af00e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/LibTessDotNet/Tess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83aa7c1c1df6b9f41ba39f57964340a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/MultiValueDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a4007b337ab2d242aefb806d1534b68 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/ThirdParty/clipper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e115dc173eb7144b9e4658ea2e46fb1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/TileIdMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50241b6cdd259d246baf774ba9a7df71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73837c663d684f84db0dc5f18fbbebb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Tiles/BadTileSpriteProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f81b9cd0c9a2da4b9dc9b4c25308dc9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: 7 | - m_BadTileTextures: {fileID: 11400000, guid: d9c91e7736c97874393b93929ad385b3, 8 | type: 2} 9 | - m_BadTileTexture: {instanceID: 0} 10 | executionOrder: 0 11 | icon: {instanceID: 0} 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Tiles/BadTileTextures.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9c91e7736c97874393b93929ad385b3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Tiles/BadTileTextures.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | // Only make one of these during development 4 | //[CreateAssetMenu(fileName = "BadTileTextures", menuName = "Super Tiled2Unity/Create BadTileTexture files")] 5 | public class BadTileTextures : ScriptableObject 6 | { 7 | public Texture2D[] m_Textures; 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Tiles/BadTileTextures.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 050151f50f49c88428b22f5fdfbed9b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 114afc5761282db48b6121d4e04c0fb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Windows/RecursiveAssetDependencyTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 717c33600349cec4c908deb5d2b72b63 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/Windows/SuperPackageExport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8b822547c81a4a4d82c3eed07645e4a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/seanba.super-tiled2unity.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Super Tiled2Unity Editor", 3 | "rootNamespace": "", 4 | "references": [ 5 | "GUID:06e56dbbb8dec4d43a0b85b0fe0dd0ca", 6 | "GUID:2c573e6b271651846a79655161004c5b", 7 | "GUID:1c0efac71f61649eab4850fa3687d8a4" 8 | ], 9 | "includePlatforms": [ 10 | "Editor" 11 | ], 12 | "excludePlatforms": [], 13 | "allowUnsafeCode": false, 14 | "overrideReferences": false, 15 | "precompiledReferences": [], 16 | "autoReferenced": true, 17 | "defineConstraints": [ 18 | "UNITY_2021_3_OR_NEWER" 19 | ], 20 | "versionDefines": [ 21 | { 22 | "name": "com.unity.2d.aseprite", 23 | "expression": "1.2.0", 24 | "define": "ST2U_WITH_ASEPRITE_IMPORT_MODE_TILESET" 25 | } 26 | ], 27 | "noEngineReferences": false 28 | } -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Editor/seanba.super-tiled2unity.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18495c2ae79d2b14aa9ff8cb6556ffd2 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 235aaa2935a19564d912ccb96a24e901 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a88ec8a6786ae64c9ac17ea61a7d70e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/CollisionObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452ae7570278dd340879b591666930cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/CollisionShapeType.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum CollisionShapeType 4 | { 5 | Rectangle, 6 | Ellipse, 7 | Polygon, 8 | Polyline, 9 | Point, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/CollisionShapeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eada5bcf5cb1b88449a085d2773c1e5a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/CustomProperty.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace SuperTiled2Unity 5 | { 6 | [Serializable] 7 | public class CustomProperty 8 | { 9 | public string m_Name; 10 | public string m_Type; 11 | public string m_Value; 12 | 13 | public bool IsEmpty => string.IsNullOrEmpty(m_Name); 14 | } 15 | 16 | // Helper extension methods 17 | public static class CustomPropertyListExtensions 18 | { 19 | public static bool TryGetProperty(this List list, string propertyName, out CustomProperty property) 20 | { 21 | if (list != null) 22 | { 23 | property = list.Find(p => String.Equals(p.m_Name, propertyName, StringComparison.OrdinalIgnoreCase)); 24 | return property != null; 25 | } 26 | 27 | property = null; 28 | return false; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/CustomProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daf466123d223cb4dab652fb5c136636 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Errors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86d897743dceb35438abbc60f9a9901b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Errors/ImportErrors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa0b69b0c654a2c418362fc45a64bfbd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3300c93c719414481c3f5122aa15fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions/CustomPropertyExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e174054d7cca364ba225c9011e67b0c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions/EnumerableExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5019073c990d5440b63c76328505dc6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b77a8a3f25ef76e4f9d952614697a3d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e034c09b01f17df41abf079d5b4cf400 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Extensions/SuperTileExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c12df8ebeeaaba4bb8d835232926ae5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/FillMode.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum FillMode 4 | { 5 | Stretch, 6 | Preserve_Aspect_Fit, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/FillMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7165080dff7a5954d926bc1f22bcd293 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/FlipFlags.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum FlipFlags 4 | { 5 | None = 0, 6 | 7 | Diagonal = 1, 8 | Vertical = 2, 9 | Horizontal = 4, 10 | Hexagonal120 = 8, 11 | } 12 | 13 | public static class FlipFlagsMask 14 | { 15 | public static bool FlippedHorizontally(FlipFlags flags) 16 | { 17 | return (flags & FlipFlags.Horizontal) != 0; 18 | } 19 | 20 | public static bool FlippedVertically(FlipFlags flags) 21 | { 22 | return (flags & FlipFlags.Vertical) != 0; 23 | } 24 | 25 | public static bool RotatedDiagonally(FlipFlags flags) 26 | { 27 | return (flags & FlipFlags.Diagonal) != 0; 28 | } 29 | 30 | public static bool RotatedHexagonally120(FlipFlags flags) 31 | { 32 | return (flags & FlipFlags.Hexagonal120) != 0; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/FlipFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4de9f8348e38d439656da2e44981d7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/GridOrientation.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum GridOrientation 4 | { 5 | Orthogonal, 6 | Isometric, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/GridOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2683df667a698f4fbc366e679e517b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/MapOrientation.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum MapOrientation 4 | { 5 | Orthogonal, 6 | Isometric, 7 | Staggered, 8 | Hexagonal, 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/MapOrientation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8a20f21322c62e409c23bb7749b3164 3 | timeCreated: 1517978184 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/MapRenderOrder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18dc0ed4c95f0ac4195a07dd7c77366d 3 | timeCreated: 1517978624 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 469d324fc06158d40a28d22ca834c9d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Math/MatrixUtils.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | public static class MatrixUtils 6 | { 7 | public static Matrix4x4 Rotate2d(float m00, float m01, float m10, float m11) 8 | { 9 | var mat = Matrix4x4.identity; 10 | mat.m00 = m00; 11 | mat.m01 = m01; 12 | mat.m10 = m10; 13 | mat.m11 = m11; 14 | 15 | return mat; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Math/MatrixUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d422f78efde64c346807de8aceedc871 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/ObjectAlignment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16208a0aba30c484ab87f1d1a0e7a963 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | public class ReadOnlyAttribute : PropertyAttribute 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/ReadOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0424d2c9a5b4a8d40b2d31b1302332cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/StaggerAxis.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum StaggerAxis 4 | { 5 | X, 6 | Y, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/StaggerAxis.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47ca49b9280018440a3702a67d4e6920 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/StaggerIndex.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum StaggerIndex 4 | { 5 | Even, 6 | Odd, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/StaggerIndex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03030962dd74f1c4598a85df21d345da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperColliderComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b236e958402f8514f8685b9a9db9b715 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperCustomProperties.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity 5 | { 6 | // A simple component for storing custom properites 7 | // Ideally, custom import scripts should use these in the import process and then strip them from the final prefab 8 | public class SuperCustomProperties : MonoBehaviour 9 | { 10 | public List m_Properties; 11 | 12 | public bool TryGetCustomProperty(string name, out CustomProperty property) 13 | { 14 | return m_Properties.TryGetProperty(name, out property); 15 | } 16 | 17 | public void RemoveCustomProperty(string name) { 18 | m_Properties.RemoveAll(PredicateRemoveCustomProperty); 19 | 20 | bool PredicateRemoveCustomProperty(CustomProperty customProperty) { 21 | return name.Equals(customProperty.m_Name); 22 | } 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperCustomProperties.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60eadddeab0d66d4084aca14d14cbcfc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperGroupLayer.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public class SuperGroupLayer : SuperLayer 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperGroupLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 393d5a9eb0cb54249b70807954510fb9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperImageLayer.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public class SuperImageLayer : SuperLayer 4 | { 5 | [ReadOnly] 6 | public string m_ImageFilename; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperImageLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d56977c501f28174fbe67cb69197cddd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47723350f28da9944880a25bfc22977a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9afdeaae1bb27d6418d5d8cd5165faed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dee00135f58173948b1f4e932384fb89 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperObjectLayer.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | public class SuperObjectLayer : SuperLayer 6 | { 7 | [ReadOnly] 8 | public Color m_Color; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperObjectLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdadc5a21ba6c134192e653b4385d366 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperTileLayer.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public class SuperTileLayer : SuperLayer 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperTileLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6625a2c215475fa44b1c76c4ae978948 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperTilesAsObjectsTilemap.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | // Component to put on a "fake tilemap" layer that places tiles as objects 6 | public class SuperTilesAsObjectsTilemap : MonoBehaviour 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperTilesAsObjectsTilemap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b94a47f6431c20c4aa4d7a5dc43df81a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperTileset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a03e13c5227d20419a9bbf5f864fd94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperWorld.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | public class SuperWorld : MonoBehaviour 6 | { 7 | [ReadOnly] 8 | public ImportErrors m_ImportErrors; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/SuperWorld.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 581fb3f3285643f44afda31d45289d8d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/TileObjectAnimator.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SuperTiled2Unity 4 | { 5 | public class TileObjectAnimator : MonoBehaviour 6 | { 7 | public float m_AnimationFramerate; 8 | public Sprite[] m_AnimationSprites; 9 | 10 | private float m_Timer; 11 | private int m_AnimationIndex; 12 | 13 | private void Update() 14 | { 15 | m_Timer += Time.deltaTime; 16 | float frameTime = 1.0f / m_AnimationFramerate; 17 | 18 | if (m_Timer > frameTime) 19 | { 20 | m_AnimationIndex++; 21 | if (m_AnimationIndex >= m_AnimationSprites.Length) 22 | { 23 | m_AnimationIndex = 0; 24 | } 25 | 26 | var renderer = GetComponent(); 27 | renderer.sprite = m_AnimationSprites[m_AnimationIndex]; 28 | 29 | m_Timer = frameTime - m_Timer; 30 | } 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/TileObjectAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae16ce366dabdcc49850485b19178a97 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/TileRenderSize.cs: -------------------------------------------------------------------------------- 1 | namespace SuperTiled2Unity 2 | { 3 | public enum TileRenderSize 4 | { 5 | Tile, 6 | Grid, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/TileRenderSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 255b9873788ab5e438e99de34fc6a599 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79cff433fa020f545bef6cc009e850d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/SuperBadTile.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.Tilemaps; 3 | 4 | namespace SuperTiled2Unity 5 | { 6 | // A tile that "looks wrong", indicationg that the map or tileset was not imported correctly 7 | public class SuperBadTile : SuperTile 8 | { 9 | public Color m_Color = Color.white; 10 | 11 | public override void GetTileData(Vector3Int position, ITilemap tilemap, ref TileData tileData) 12 | { 13 | tileData.flags = TileFlags.LockColor; 14 | tileData.color = m_Color; 15 | tileData.sprite = m_Sprite; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/SuperBadTile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e31888f619fa33c41921e95e67e96612 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/SuperTile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c16a673f427eb24f8288e6932fa0779 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44e95f34667f9df43a3793eb3a2272a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-00.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-01.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-02.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-03.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-04.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-05.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-06.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-07.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-08.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-09.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/Textures/bad-tile-10.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/TilesetSprites.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEngine; 3 | 4 | namespace SuperTiled2Unity 5 | { 6 | // A list of a all the sprites that are used in a collection of tilesets 7 | public class TilesetSprites : ScriptableObject 8 | { 9 | public List m_Sprites = new(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/Tiles/TilesetSprites.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee9d40e574d2961409de7625be39750b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/seanba.super-tiled2unity.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SuperTiled2Unity", 3 | "rootNamespace": "", 4 | "references": [], 5 | "includePlatforms": [], 6 | "excludePlatforms": [], 7 | "allowUnsafeCode": false, 8 | "overrideReferences": false, 9 | "precompiledReferences": [], 10 | "autoReferenced": true, 11 | "defineConstraints": [ 12 | "UNITY_2020_3_OR_NEWER" 13 | ], 14 | "versionDefines": [], 15 | "noEngineReferences": false 16 | } -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Runtime/seanba.super-tiled2unity.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06e56dbbb8dec4d43a0b85b0fe0dd0ca 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/ASE_numbers.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/ASE_numbers.aseprite -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/S_ase_testing.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f06b78d7de89a874da80726120be46f3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/TMX_numbers.tmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 1,2,3, 7 | 4,5,6, 8 | 7,8,9 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/TMX_numbers.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4d98fee6a67540468b46466c316fc00 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 31 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/TSX_numbers.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Aseprite/TSX_numbers.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8331f9f9f17cc0642b90b0de7a5b76de 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 20 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 47 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d60c715763d55a41b77931785720afc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db0ec50390b7e2d468038a2370374718 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/gui.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/mockups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/mockups.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/overhead-objects.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/pillar.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/pilllar-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/pilllar-broken.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8700fc57188a60e45b3c36bc34e0ff05 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/scraps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/scraps.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/scraps.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/sprites.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/tiles.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/water.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/waterfall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Maps/Zoria Tileset/waterfall.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62031037bfe06d140942adba88bdd8c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2576711ff75da14ead8c396884c0f76 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Idle-down.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 104204d4687ea254a977033f36c35b36 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Idle-left.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95294e9b4613eb4795be90ff4a6fee5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Idle-right.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3a31488455636469ac5abd836b2423 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Idle-up.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6033fa5ac0c089d4ab50a0ac05de7b47 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/MegaDad-controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63be1058a7c60fa43b128a4769eeb17e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/MegaDad-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/MegaDad-sheet.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/MegaDad.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b256ddac5c33133449143b5aa4810a22 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/OverheadMegaDadController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b50a2addbb13264aa0575d4635620ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Walk-down.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dcf0cc6caa606f4ab8e9b66d9fc3c0d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Walk-left.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b29484152c89bb84ca4f06ec05cee03f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Walk-right.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6703c709761684147bdff9f2c1257af8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/MegaDad/Walk-up.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b73360dd1b69a5d41a3da7cfa96f1429 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 717155d09644a49488cfdbab83d66164 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash/Splash.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df520848e060ff94292b085fd6e824ef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash/splash-anim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 001f3cf768ab2034c81c5cf74fb03f7c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash/splash-ctrl.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee78f041e8df21d48a5ca21589b7bd37 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/Sprites/Splash/splash.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Overhead/overhead.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 834ee709162f89a4ba9e99a106fc2c00 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/SA_Example.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 359f93bcb8ba4434b925f7f452e42f62 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/S_Seams.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f24d60b0d8f5ba8458978a712722e7a8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/SeamMaker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1eeafaeded752429eca0551f582aa6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TMap_WithSeams.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69f7648afe989a14f9f77bb52de00715 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 31 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TMap_WithoutSeams.tmx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df712813fe686d47bdf996f62b587e3 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1fa25d03934ea624a82bf2fcee6f0873, type: 3} 11 | importerVersion: 31 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 2 15 | tilesAsObjects: 0 16 | sortingMode: 0 17 | isIsometric: 0 18 | customImporterClassName: 19 | internalTilesets: [] 20 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTileAtlas_Example.st2u_atlas: -------------------------------------------------------------------------------- 1 | # Uses Super Tiled2Unity scripted importer for placing tileset sprites in a sprite atlas -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTileAtlas_Example.st2u_atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80acd576469940949aed8d751c32ca4b 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 14bc6dd67b45d094c836611ff82ed592, type: 3} 11 | spriteAtlas: {fileID: 4343727234628468602, guid: 359f93bcb8ba4434b925f7f452e42f62, 12 | type: 2} 13 | tilesets: 14 | - {fileID: -5890959085335758588, guid: 785f3b46764c850448cb9e9d53888dd8, type: 3} 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTiles_Letters.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTiles_Letters.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 031b08b559b51f94283941bc5550f38d 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 20 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 112 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTiles_Letters_PutInAtlas.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/TTiles_Letters_PutInAtlas.tsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 785f3b46764c850448cb9e9d53888dd8 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: cc34d0f3dc257a442819830b408c5322, type: 3} 11 | importerVersion: 20 12 | pixelsPerUnit: 1 13 | edgesPerEllipse: 32 14 | numberOfObjectsImported: 112 15 | colliderType: 0 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/T_Letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Samples~/Seams/T_Letters.png -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Third Party Notices.md: -------------------------------------------------------------------------------- 1 | # Third Party Notices 2 | 3 | fixit - I have a series of 3rd parties. List them. 4 | Make sure to include Zoria tileset -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/Third Party Notices.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43a8c00db568c7d4f8d1a8920f85e2a4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/com.seanba.super-tiled2unity/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 839c4460454d8ca43bbf917f548d5bfb 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SuperTiled2Unity/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.aseprite": "1.1.9", 4 | "com.unity.2d.sprite": "1.0.0", 5 | "com.unity.2d.tilemap": "1.0.0", 6 | "com.unity.ide.visualstudio": "2.0.22", 7 | "com.unity.modules.animation": "1.0.0", 8 | "com.unity.modules.audio": "1.0.0", 9 | "com.unity.modules.imgui": "1.0.0", 10 | "com.unity.modules.jsonserialize": "1.0.0", 11 | "com.unity.modules.physics2d": "1.0.0", 12 | "com.unity.modules.tilemap": "1.0.0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 1024 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Samples/Super Tiled2Unity/2.3.1/Overhead/overhead.unity 10 | guid: 834ee709162f89a4ba9e99a106fc2c00 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 1 11 | m_SpritePackerMode: 4 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: 7 | - type: 8 | m_NativeTypeID: 20 9 | m_ManagedTypePPtr: {fileID: 0} 10 | m_ManagedTypeFallback: 11 | defaultPresets: 12 | - m_Preset: {fileID: 2655988077585873504, guid: bfcfc320427f8224bbb7a96f3d3aebad, 13 | type: 2} 14 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.58f1 2 | m_EditorVersionWithRevision: 2022.3.58f1 (ed7f6eacb62e) 3 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | assetDefaultFramerate: 60 16 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 1 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 1 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /SuperTiled2Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /deploy/com.seanba.super-tiled2unity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/com.seanba.super-tiled2unity.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.0.0.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.0.1.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.1.0.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.1.1.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.0.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.1.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.2.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.3.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.4.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.2.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.2.5.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.3.0.zip -------------------------------------------------------------------------------- /deploy/super-tiled2unity.v2.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/deploy/super-tiled2unity.v2.3.1.zip -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line. 5 | SPHINXOPTS = 6 | SPHINXBUILD = sphinx-build 7 | SPHINXPROJ = SuperTiled2Unity 8 | SOURCEDIR = . 9 | BUILDDIR = _build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- 1 | /* override table width restrictions */ 2 | @media screen and (min-width: 767px) { 3 | 4 | .wy-table-responsive table td { 5 | /* !important prevents the common CSS stylesheets from overriding 6 | this as on RTD they are loaded after this stylesheet */ 7 | white-space: normal !important; 8 | } 9 | 10 | .wy-table-responsive { 11 | overflow: visible !important; 12 | } 13 | } -------------------------------------------------------------------------------- /docs/auto-run-local.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | pushd %~dp0 3 | 4 | echo Automatically serving sphinx docs 5 | sphinx-autobuild . .\_build 6 | 7 | IF %ERRORLEVEL% NEQ 0 Echo sphinx-autobuild is not installed. Run 'pip install sphinx-autobuild' 8 | 9 | popd -------------------------------------------------------------------------------- /docs/img/docs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/docs_logo.png -------------------------------------------------------------------------------- /docs/img/mega-dad-stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/mega-dad-stand.png -------------------------------------------------------------------------------- /docs/img/settings-importer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/settings-importer.png -------------------------------------------------------------------------------- /docs/img/st2u-package-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/st2u-package-installed.png -------------------------------------------------------------------------------- /docs/img/tmx-importer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/tmx-importer.png -------------------------------------------------------------------------------- /docs/img/unity-super-metroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/img/unity-super-metroid.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=. 11 | set BUILDDIR=_build 12 | set SPHINXPROJ=SuperTiled2Unity 13 | 14 | if "%1" == "" goto help 15 | 16 | %SPHINXBUILD% >NUL 2>NUL 17 | if errorlevel 9009 ( 18 | echo. 19 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 20 | echo.installed, then set the SPHINXBUILD environment variable to point 21 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 22 | echo.may add the Sphinx directory to PATH. 23 | echo. 24 | echo.If you don't have Sphinx installed, grab it from 25 | echo.http://sphinx-doc.org/ 26 | exit /b 1 27 | ) 28 | 29 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 30 | goto end 31 | 32 | :help 33 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 34 | 35 | :end 36 | popd 37 | -------------------------------------------------------------------------------- /docs/manual/img/custom-props/custom-prop-ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/custom-props/custom-prop-ignore.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/custom-object-types-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/custom-object-types-window.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/export-objects-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/export-objects-types.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/export-save-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/export-save-dialog.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/object-types-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/object-types-editor.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/props-tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/props-tiled.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/props-unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/props-unity.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/st2u-project-settings-object-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/st2u-project-settings-object-xml.png -------------------------------------------------------------------------------- /docs/manual/img/objects-xml/unity-projects-settings-menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/objects-xml/unity-projects-settings-menuitem.png -------------------------------------------------------------------------------- /docs/manual/img/pipeline/custom-importer-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/pipeline/custom-importer-header.png -------------------------------------------------------------------------------- /docs/manual/img/sort/column-five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/column-five.png -------------------------------------------------------------------------------- /docs/manual/img/sort/column-four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/column-four.png -------------------------------------------------------------------------------- /docs/manual/img/sort/column-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/column-three.png -------------------------------------------------------------------------------- /docs/manual/img/sort/column-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/column-two.png -------------------------------------------------------------------------------- /docs/manual/img/sort/default-player-sky-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/default-player-sky-sorting.png -------------------------------------------------------------------------------- /docs/manual/img/sort/default-player-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/default-player-sorting.png -------------------------------------------------------------------------------- /docs/manual/img/sort/default-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/default-sorting.png -------------------------------------------------------------------------------- /docs/manual/img/sort/example-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/example-sorting.png -------------------------------------------------------------------------------- /docs/manual/img/sort/overhead-example-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/overhead-example-anim.gif -------------------------------------------------------------------------------- /docs/manual/img/sort/sort-tile-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/sort-tile-objects.png -------------------------------------------------------------------------------- /docs/manual/img/sort/sorting-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/sorting-options.png -------------------------------------------------------------------------------- /docs/manual/img/sort/tagman-sort-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/tagman-sort-player.png -------------------------------------------------------------------------------- /docs/manual/img/sort/tiled-custom-prop-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/tiled-custom-prop-player.png -------------------------------------------------------------------------------- /docs/manual/img/sort/tiled-custom-prop-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/tiled-custom-prop-sky.png -------------------------------------------------------------------------------- /docs/manual/img/sort/tileset-collection-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/tileset-collection-images.png -------------------------------------------------------------------------------- /docs/manual/img/sort/unity-importer-csa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/unity-importer-csa.png -------------------------------------------------------------------------------- /docs/manual/img/sort/unity-settings-csa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanba/SuperTiled2Unity/27c546decf946c997bc353eaab4b1f5a7d5b3022/docs/manual/img/sort/unity-settings-csa.png --------------------------------------------------------------------------------