TMXGlueLib.TiledMapToShapeCollectionConverter.ToShapeCollection C# (CSharp) Метод

ToShapeCollection() публичный статический Метод

public static ToShapeCollection ( this tiledMapSave, string layerName = null ) : ShapeCollection
tiledMapSave this
layerName string
Результат ShapeCollection
        public static ShapeCollection ToShapeCollection(this TiledMapSave tiledMapSave, string layerName = null)
        {
            var scs = tiledMapSave.ToShapeCollectionSave(layerName);

            return scs.ToShapeCollection();
        }