Beispiel #1
0
        public static ImportedTemplate LoadTXFile(string path, string tilesetDir, int cellWidth, int cellHeight, int pixelsPerUnit)
        {
            TXTypes.Template template = ImportUtils.ReadXMLIntoObject <TXTypes.Template>(path);

            ImportedTileset tileset;

            if (template.tileset != null)
            {
                string baseFolder = Path.GetDirectoryName(path);
                tileset = TiledTSXImporter.ImportFromTilesetReference(template.tileset, baseFolder, tilesetDir, cellWidth, cellHeight, pixelsPerUnit);
            }
            else
            {
                tileset = null;
            }

            return(new ImportedTemplate(template, tileset));
        }
Beispiel #2
0
 public ImportedTemplate(TXTypes.Template template, ImportedTileset tileset)
 {
     m_template        = template;
     m_importedTileset = tileset;
 }