Crate vintage_schematics

Crate vintage_schematics 

Source
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 WorldEdit schematic. If you have an uncompressed schematic reader, use convert_uncompressed instead.
convert_file
Converts a GZIP-compressed schematic file to a WorldEdit schematic. Infers the schematic format from the file extension. Use convert() to specify the format explicitly.
convert_uncompressed
Converts an uncompressed schematic reader to a WorldEdit schematic. If you have a GZIP-compressed schematic reader, use convert instead.

Type Aliases§

Map
Alias for std::collections::BTreeMap. To use HashMap instead, enable the hashmap feature.
Set
Alias for std::collections::BTreeSet. To use HashMap instead, enable the hashmap feature.