Difference between revisions of "User:Twoelk/sandbox1"

From Minetest Wiki
Jump to navigation Jump to search
(building category tree wip)
Line 63: Line 63:
 
             └── ...
 
             └── ...
 
</pre>
 
</pre>
 +
 +
 +
== Category tree ==
 +
 +
 +
* [[:Category:Minetest (Root Category)]]
 +
**[[:Category:Game Content]]
 +
***[[:Category:Blocks]]
 +
****[[:Category:Blocks by appearance]]
 +
*****[[:Category:Blocks generated on special events]]
 +
*****[[:Category:Generated blocks]]
 +
******[[:Category:Ores]]
 +
*****[[:Category:Manufactured blocks]]
 +
*****[[:Category:Unused blocks]]
 +
****[[:Category:Blocks by function]]
 +
*****[[:Category:Usable blocks]]
 +
****[[:Category:Blocks by group]]
 +
*****[[:Category:Flammable]]
 +
*****[[:Category:Flora]]
 +
*****[[:Category:Leaves]]
 +
*****[[:Category:Sand]]
 +
*****[[:Category:Stone]]
 +
*****[[:Category:Wheat]]
 +
*****[[:Category:Wood]]
 +
****[[:Category:Blocks by material]]
 +
*****[[:Category:Ores]]
 +
*****[[:Category:Organic blocks]]
 +
****[[:Category:Blocks by property]]
 +
*****[[:Category:Blocks with an inventory]]
 +
*****[[:Category:Cultivatable blocks]]
 +
*****[[:Category:Damaging]]
 +
*****[[:Category:Falling]]
 +
*****[[:Category:Flammable]]
 +
*****[[:Category:Luminous]]
 +
*****[[:Category:Passable]]
 +
*****[[:Category:Placeable]]
 +
****[[:Category:Blocks by state of matter]]
 +
*****[[:Category:Gas]]
 +
*****[[:Category:Liquid]]
 +
*****[[:Category:Solid]]
 +
***[[:Category:Items]]
 +
***[[:Category:Plants]]
 +
**[[:Category:Gameplay]]
 +
**[[:Category:Games]]
 +
**[[:Category:Map]]
 +
**[[:Category:Mods]]
 +
**[[:Category:People]]
 +
**[[:Category:Pictures]]
 +
**[[:Category:Related software]]
 +
**[[:Category:Server]]
 +
**[[:Category:Tutorials]]
  
  
  
 
[[Category:UserPages]]
 
[[Category:UserPages]]

Revision as of 16:55, 28 March 2014

This shall be my sandbox

folder structure playtree

Example structure

minetest/
├── bin/
├── builtin/
├── cache/
│   ├── media/
│   └── tmp/
├── client/
│   ├── serverlist/
│   └── shaders/
│       ├── alpha_shader/
│       ├── leaves_shader/
│       ├── liquids_shader/
│       ├── plants_shader/
│       └── solids_shader/
├── doc/
├── fonts/
├── games/
│   ├── minetest_game/
│   ├── minimal/
│   └── ...
├── locale/ (+lots of language folders)
├── mods/
│   └── ...
├── textures/
│   ├── base/
│   │   └── pack/
│   └── ...
└── worlds/
    └── ...


In this example the mods "carts" and "tnt" are installed:

    mods/
    ├── carts/
    │   ├── depends.txt
    │   ├── init.lua
    │   ├── functions.lua
    │   ├── README.txt
    │   ├── textures/
    │   │   ├── carts_top.png
    │   │   └── ...
    │   └── models/
    │       ├── cart.x
    │       └── ...
    └── tnt/
        ├── init.lua
        ├── depends.txt
        ├── README.txt
        ├── textures/
        │   ├── tnt_side.png
        │   └── ...
        └── sounds/
            ├── tnt_explode.ogg
            └── ...


Category tree