summaryrefslogtreecommitdiff
path: root/worldedit/primitives.lua
AgeCommit message (Collapse)Author
2016-01-05Fixed Issue #83 : upsidedown pyramid not working wellSebastien Ponce
2015-11-01Fix #93 (thanks @za267!)Anthony Zhang
2015-02-01Cleanup and fixupShadowNinja
Non-stylistic changes: * Add LuaDoc/LDoc support. * Fix `clear_objects` area size calculation. * Fix `clear_objects` removing player objects. * Fix shadowing of marker entity name with player name. * Make visualization functions use `swap_node`. * Make hidden nodes unwalkable. * Prevent `hide` from hiding air. * Make deprecated functions log to deprecated stream when called. * Fixed `replaceinverse` not using normalized node names. * Added .gitignore. * Bump version to 1.1. Stylistic changes: * Change `x = function` to `function x`. * Change comment format. * Make missing VoxelManip error less obnoxious. * Move `sort_pos` into `common.lua`, which is a required module. * Remove local copies of `minetest`. * Remove `worldedit = worldedit or {}` from modules. * Replace replaceinverse with an inverse argument to `replace`. * Added `error()`s on on invalid axes. * Change `wip` to `TODO`. * Rename `clearobjects` to `clear_objects`. * Remove `hollow_{sphere,dome,cylinder}` and replace them with a hollow parameter to each function. * Add helpers to reduce code duplication. * Renamed `Chat Commands.md` to `ChatCommands.md`.
2013-12-16Improve worldedit.spiral and the WorldEdit GUI,Uberi
2013-12-15Fix worldedit.hollow_cylinder.Uberi
2013-08-16Changes to support the latest schematic probability specification.Uberi
2013-07-31Rewrite spirals from scratch and fix upside-down pyramids. Use voxelmanip ↵Anthony Zhang
for markers to ensure area is emerged.
2013-07-31//pyramid works along any axis and backwards. Working //clearobjects and ↵Anthony Zhang
//cylinder command, begin implementing super marker. Remove EnvRef usages and the block queue (the block queue does not work with VoxelManips). More block emergers.
2013-07-29Support negative values to make upside-down domes and pyramids (slight ↵Anthony Zhang
changes to worldedit.pyramid interface for coming changes). Add experimental //clearobjects, make node inspector work per-player.
2013-07-28Fix bugs in visualization API and make it ore robust. Fix bugs in ↵Anthony Zhang
//fixedpos, //suppress, and //highlight.
2013-07-28Slight optimizations, and make //pyramid work properly again.Anthony Zhang
2013-07-27More speedups for //hollowsphere, //sphere, //hollowdome, //dome, ↵Anthony Zhang
//cylinder, better module loader, fix message in //volume.
2013-07-21Super duper VoxelManipulator speedups to nearly every API function, and plus ↵Anthony Zhang
support for unloaded areas. Still in progress. Also, fix //allocate for very large schematics.
2013-07-12Even bigger speed gains by using LuaVoxelManipulator in a few choice places! ↵Anthony Zhang
Faster //set, //cylinder, etc., but plenty of room for improvements still.
2013-06-24Fix volume of spheres, domes, and their hollow variants.Anthony Zhang
2013-06-23Avoid using slower and deprecated EnvRef, fix schematic data MapNodes, huge ↵Anthony Zhang
speed boost to worldedit.hollow_cylinder, fix some bugs.
2013-06-22Super-speed a few primitives and visualization functions, including ↵Anthony Zhang
hollowsphere, sphere, hollowdome, dome, and suppress.
2013-06-22Clarify the documentation regarding the the positioning of WorldEdit ↵Anthony Zhang
primitives relative to position 1.
2013-04-28Add Block QueueSfan5
2013-04-27New commands //hollowdome and //dome, as well as new API functions ↵Anthony Zhang
worldedit.dome and worldedit.hollow_dome. Oh, and spheres generate faster too.
2012-10-17worldedit.hollow_sphere returns non-nil countKyle
2012-10-13Separate components into separate mods, add visualization API with hide(), ↵Anthony Zhang
suppress(), find(), and restore() for nondestructive node visualization. Corresponding chat commands are //hide, //suppress, //find, and //restore. Commands and functions documented.