Difference between revisions of "User:Twoelk/sandbox1"

From Minetest Wiki
Jump to navigation Jump to search
m
Line 4: Line 4:
  
 
== Example structure ==
 
== Example structure ==
 +
<pre>
 +
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/
 +
    └── ...
 +
 +
</pre>
 +
 +
 
In this example the mods "carts" and "tnt" are installed:
 
In this example the mods "carts" and "tnt" are installed:
 
<pre>
 
<pre>

Revision as of 03:18, 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
            └── ...