minetest.conf.example.extra 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. # By default, all the settings are commented and not functional.
  6. # Uncomment settings by removing the preceding #.
  7. # minetest.conf is read by default from:
  8. # ../minetest.conf
  9. # ../../minetest.conf
  10. # Any other path can be chosen by passing the path as a parameter
  11. # to the program, eg. "minetest.exe --config ../minetest.conf.example".
  12. # Further documentation:
  13. # http://wiki.minetest.net/
  14. # Mapgen
  15. # Noise parameters and formats
  16. # Noise parameters can be specified as a set of positional values, for example:
  17. #
  18. # Offset, scale, (x, y, z spread factors), seed offset, octaves, persistence, lacunarity
  19. # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
  20. #
  21. # Or the group format can be used instead, for example:
  22. #
  23. # mgv6_np_terrain_base = {
  24. # offset = -4,
  25. # scale = 20,
  26. # spread = (250, 250, 250),
  27. # seed = 82341,
  28. # octaves = 5,
  29. # persistence = 0.6,
  30. # lacunarity = 2.0,
  31. # flags = "defaults"
  32. # }
  33. #
  34. # The advanced settings menu does not yet support the group format.
  35. # Only the group format supports noise flags which are needed for eased noise.
  36. # Mgv5 uses eased noise for np_ground so this is shown in group format below
  37. # and is not present in the advanced settings menu.
  38. # Mapgen v5
  39. # Noise parameter in group format, unsupported by advanced settings menu but
  40. # settable in minetest.conf.
  41. # See documentation of noise parameter formats above.
  42. #
  43. # 3D noise defining terrain.
  44. # type: noise_params
  45. # mgv5_np_ground = {
  46. # offset = 0,
  47. # scale = 40,
  48. # spread = (80, 80, 80),
  49. # seed = 983240,
  50. # octaves = 4,
  51. # persistence = 0.55,
  52. # lacunarity = 2.0,
  53. # flags = "eased"
  54. # }