Difference between revisions of "User:Twoelk/sandbox1"

From Minetest Wiki
Jump to navigation Jump to search
(Created page with "This shall be my sandbox folder structure playtree == Example structure == In this example the mods "carts" and "tnt" are installed: <pre> mods/ ├── carts/ ...")
 
m
Line 29: Line 29:
 
             └── ...
 
             └── ...
 
</pre>
 
</pre>
 +
 +
 +
 +
[[Category:UserPage]]

Revision as of 18:31, 27 March 2014

This shall be my sandbox

folder structure playtree

Example structure

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
            └── ...