Android: fix RTTI issue
[oweals/minetest.git] / minetest.conf.example.extra
1 #    This file contains information (some of which was previously stored in
2 #    minetest.conf.example) that cannot be automatically generated from
3 #    builtin/settingtypes.txt.
4 #    This file contains a list of settings and their default value for minetest.conf
5
6 #    By default, all the settings are commented and not functional.
7 #    Uncomment settings by removing the preceding #.
8
9 #    minetest.conf is read by default from:
10 #    ../minetest.conf
11 #    ../../minetest.conf
12 #    Any other path can be chosen by passing the path as a parameter
13 #    to the program, eg. "minetest.exe --config ../minetest.conf.example".
14
15 #    Further documentation:
16 #    http://wiki.minetest.net/
17
18
19 # Mapgen
20
21 # Noise parameters and formats
22
23 #    Noise parameters can be specified as a set of positional values, for example:
24 #
25 #    Offset, scale, (x, y, z spread factors), seed offset, octaves, persistence, lacunarity
26 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
27 #
28 #    Or the group format can be used instead, for example:
29 #
30 # mgv6_np_terrain_base = {
31 #    offset      = -4,
32 #    scale       = 20,
33 #    spread      = (250, 250, 250),
34 #    seed        = 82341,
35 #    octaves     = 5,
36 #    persistence = 0.6,
37 #    lacunarity  = 2.0,
38 #    flags       = "defaults"
39 # }
40 #
41 #    The advanced settings menu does not yet support the group format.
42 #    Only the group format supports noise flags which are needed for eased noise.
43 #    Mgv5 uses eased noise for np_ground so this is shown in group format below
44 #    and is not present in the advanced settings menu.
45
46 # Mapgen v5
47
48 #    Noise parameter in group format, unsupported by advanced settings menu but
49 #    settable in minetest.conf.
50 #    See documentation of noise parameter formats above.
51 #
52 #    3D noise defining terrain.
53 #    type: noise_params
54 # mgv5_np_ground = {
55 #    offset      = 0,
56 #    scale       = 40,
57 #    spread      = (80, 80, 80),
58 #    seed        = 983240,
59 #    octaves     = 4,
60 #    persistence = 0.55,
61 #    lacunarity  = 2.0,
62 #    flags       = "eased"
63 # }