Improve descriptions and readme for repo information

* put usage in README.md
* delete the infame html descriptions file
This commit is contained in:
Герхард PICCORO Lenz McKAY 2022-02-02 14:52:35 -04:00
parent 4bf8fe414c
commit 150932186e
6 changed files with 79 additions and 68 deletions

View File

@ -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.

View File

@ -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.

File diff suppressed because one or more lines are too long

BIN
editblocks1copy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
editblocks2delete.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1 +1,2 @@
name = edit
description = This mod allows you to copy, paste, fill and delete 3D areas using blocks pairs