Expand description
A library for converting Minecraft schematics to Vintage Story WorldEdit schematics.
See the formats module for the set of supported formats.
Modules§
- ascii85
- Encoding and decoding of ASCII85-encoded data.
- convert
- Schematic conversion logic.
- entity
- Vintage Story block entity functionality.
- formats
- The various formats supported by vintage-schematics.
Functions§
- convert
- Converts a GZIP-compressed schematic reader to a
WorldEditschematic. If you have an uncompressed schematic reader, useconvert_uncompressedinstead. - convert_
file - Converts a GZIP-compressed schematic file to a
WorldEditschematic. Infers the schematic format from the file extension. Useconvert()to specify the format explicitly. - convert_
uncompressed - Converts an uncompressed schematic reader to a
WorldEditschematic. If you have a GZIP-compressed schematic reader, useconvertinstead.
Type Aliases§
- Map
- Alias for
std::collections::BTreeMap. To useHashMapinstead, enable thehashmapfeature. - Set
- Alias for
std::collections::BTreeSet. To useHashMapinstead, enable thehashmapfeature.