diff --git a/README.md b/README.md index 491634c..e147b8c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,77 @@ -# Edit Mod -### [download](https://github.com/minetest-mods/edit/archive/master.zip) -![Edit Mod screenshot](https://raw.githubusercontent.com/minetest-mods/edit/master/screenshot.png) -### Usage of this mod discribed in the file directions.html. +minetest mod Edit +================== + +This mod provides a block way to cut, paste, fill or delete regions + +Information +----------- + +This mod is named `edit`, permits to a player, manage regions by the usage +of blocks to mark ones. It provides functionalities of `cut`, `copy`, `paste` and `delete`, +but using always special blocks to mark the dessired area. + +![screenshot](screenshot.png) + +Technical information +--------------------- + +This source provides mod named `edit`, a block way to cut, paste, fill +or delete regions by the usage of special blocks. + +| Block | internal name | item | +| ----------- | ---------- | ------------------- | +| Copy block | edit:copy | ![](textures/edit_copy.png) | +| Paste block | edit:paste | ![](textures/edit_paste.png) | +| Fill block | edit:fill | ![](textures/edit_fill.png) | +| Delete block | edit:delete | ![](textures/edit_delete.png) | + +##### dependences + +none + +Usage +------ + +The usage is by the mark of areas beetween two blocks, player must have the special blocks, +must mark an area using two paired blocks of the same type, later can operate that area: + + +#### Copy Block and Paste Block + +![editblocks1copy.png](editblocks1copy.png) + +When two Copy Blocks are placed they select an area between them as show +in figure 1. When an area is surrounded it is copied and the two Copy +Blocks are deleted. + +The Paste Block is used for pasting a 3D area copied by the Copy Block. +When a Paste Block is placed the copied area is pasted relative to the +position of the first placed Copy Block when it was copied. + +###### Delete Block + +Delete Blocks are used to delete a 3D area. When two Delete Blocks are +placed they select an area between them as show in figure 1. When an area +is surrounded it is deleted and the two Delete Blocks are deleted as well. + +#### Fill Block + +![](editblocks2delete.png) + + +Fill Blocks are used to fill a 3D area with a certain block. You can do so +by first selecting an area by surrounding it with two fill blocks. Fill +Blocks work differently when surrounding an area in that the area selected +includes the position of the Fill Blocks themselves as show in figure 2. + +Once an area is surrounded a dialog pops up and shows you all the blocks +in your inventory. If you press one, the selected area will be filled with +the block pressed. If you press a blank slot the selected area will be +filled with air. To cancel, press the "X". + +LICENCE +------- + +CC0 by MrRar check [LICENSE](LICENSE) file, this mod was started by MrRar, +minetest-mods community later absorved but abandoned. + diff --git a/description.txt b/description.txt index ed436d5..f1c4a8d 100644 --- a/description.txt +++ b/description.txt @@ -1 +1 @@ -This mod allows you to copy, paste, fill and delete 3D areas. +This mod allows you to copy, paste, fill and delete 3D areas using blocks pairs. diff --git a/directions.html b/directions.html deleted file mode 100644 index f2d50e1..0000000 --- a/directions.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - Edit Mod - - - -

Copy Block

-

- When two Copy Blocks are placed they select an area between them as show in figure 1. - When an area is surrounded it is copied and the two Copy Blocks are deleted. -

- -

Paste Block

-

- The Paste Block is used for pasting a 3D area copied by the Copy Block. - When a Paste Block is placed the copied area is pasted relative to the position of the first placed Copy Block when it was copied. -

-

Delete Block

-

- Delete Blocks are used to delete a 3D area. - When two Delete Blocks are placed they select an area between them as show in figure 1. - When an area is surrounded it is deleted and the two Delete Blocks are deleted as well. -

- -

Fill Block

-

- Fill Blocks are used to fill a 3D area with a certain block. - You can do so by first selecting an area by surrounding it with two fill blocks. - Fill Blocks work differently when surrounding an area in that the area selected includes the position of the Fill Blocks themselves as show in figure 2. - Once an area is surrounded a dialog pops up and shows you all the blocks in your inventory. - If you press one, the selected area will be filled with the block pressed. - If you press a blank slot the selected area will be filled with air. - To cancel, press the "X". -

- - \ No newline at end of file diff --git a/editblocks1copy.png b/editblocks1copy.png new file mode 100644 index 0000000..b00a433 Binary files /dev/null and b/editblocks1copy.png differ diff --git a/editblocks2delete.png b/editblocks2delete.png new file mode 100644 index 0000000..dce20d3 Binary files /dev/null and b/editblocks2delete.png differ diff --git a/mod.conf b/mod.conf index def6744..f0d5f6a 100644 --- a/mod.conf +++ b/mod.conf @@ -1 +1,2 @@ name = edit +description = This mod allows you to copy, paste, fill and delete 3D areas using blocks pairs