1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-07-12 21:00:25 +02:00

//metasave and //metaload are now superceded by //save and //load's new functionality. worldedit.deserialize now supports every version of the WorldEdit format that has ever existed, and the new worldedit.valueversion uses file characteristics to determine which type of file format a given file uses. The new WorldEdit file format is the same as the one used by MineTest for serializing data, and is capable of storing arbitrary data, as well as leaving fields for future improvements. In other words, this is the last forward-compatibility breaking change that will be made to the file format.

This commit is contained in:
Anthony Zhang
2013-03-20 17:12:48 -04:00
parent 34c4475d06
commit 9209d81d20
7 changed files with 215 additions and 446 deletions

View File

@ -235,20 +235,6 @@ Load nodes from "(world folder)/schems/<file>.we" with position 1 of the current
//load some random filename
//load huge_base
### //metasave <file>
Save the current WorldEdit region including metadata to "(world folder)/schems/<file>.wem".
//metasave some random filename
//metasave huge_base
### //metaload <file>
Load nodes and metadata from "(world folder)/schems/<file>.wem" with position 1 of the current WorldEdit region as the origin.
//metaload some random filename
//metaload huge_base
### //lua <code>
Executes <code> as a Lua chunk in the global namespace.