1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-06-30 15:10:45 +02:00

Add //homogenize, //lua, and //luatransform commands, as well as their documentation.

This commit is contained in:
Anthony Zhang
2013-01-12 18:20:41 -05:00
parent c27ab877f1
commit e2f1c4ef17
5 changed files with 138 additions and 8 deletions

View File

@ -1,4 +1,6 @@
dofile(minetest.get_modpath("worldedit") .. "/manipulations.lua")
dofile(minetest.get_modpath("worldedit") .. "/primitives.lua")
dofile(minetest.get_modpath("worldedit") .. "/visualization.lua")
dofile(minetest.get_modpath("worldedit") .. "/serialization.lua")
local path = minetest.get_modpath("worldedit")
dofile(path .. "/manipulations.lua")
dofile(path .. "/primitives.lua")
dofile(path .. "/visualization.lua")
dofile(path .. "/serialization.lua")
dofile(path .. "/code.lua")