Difference between revisions of "Minetest.conf/de"

From Luanti Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:minetest.conf}} {{Languages}} '''Hinweis:''' Seit Version 0.4.14 hat Minetest “Erweiterte Einstellungen”, um über eine grafische Oberfläche alle Einstell...")
 
(Replaced content with "{{delete|Translated version of a page that is going to be migrated off this Wiki.}}")
Tag: Replaced
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:minetest.conf}}
+
{{delete|Translated version of a page that is going to be migrated off this Wiki.}}
{{Languages}}
 
 
 
'''Hinweis:''' Seit Version 0.4.14 hat Minetest “Erweiterte Einstellungen”, um über eine grafische Oberfläche alle Einstellungen in Minetest vornehmen zu können. Sie enthält eine Kurzbeschreibung, was jede Einstellung bewirkt. Sie müssen die minetest.conf nun seltener manuell bearbeiten.
 
 
 
'''minetest.conf''' is the configuration file used for numerous purposes. This file is read every time the game starts and is always created/modified when the menu quits.
 
 
 
The configuration file is located in one of these locations:
 
* <code>../minetest.conf</code> - (RUN_IN_PLACE version, relative to executable)
 
* <code>../../minetest.conf</code> - (RUN_IN_PLACE version, relative to executable)
 
* <code>~/.minetest/minetest.conf</code> - (globally installed version on Linux)
 
 
 
A custom path to a configuration file can be specified in command line using the option <code>--config /path/to/minetest.conf</code>.
 
 
 
A file called [https://github.com/celeron55/minetest/blob/master/minetest.conf.example minetest.conf.example] is provided as an example. See that file for a more complete list of options.<br />
 
This C++ code automatically generates minetest.conf, it contains all the default settings: [https://github.com/celeron55/minetest/blob/master/src/defaultsettings.cpp]
 
 
 
== Default Settings (Excerpt) ==
 
 
 
[[/Default|'''Raw file''']]
 
 
 
{| class="wikitable"
 
|-
 
! Key
 
! Type
 
! Default Value
 
! Description
 
 
 
|-
 
| '''video_driver'''
 
| string
 
| opengl
 
| Allows the user to chose the video renderer used to render Minetest.
 
:'''null''' - No rendering at all.
 
:'''software''' - Software rendering (not accelerated by graphics card, everything done by the processor), ''very slow''.
 
:'''burningsvideo''' - Also software rendering, ''very slow''.
 
:'''direct3d8''' - Uses Direct3D 8, ''unlikely to work''.
 
:'''directdd9''' - Uses Direct3D 9, ''may not work''.
 
:'''opengl''' - Uses OpenGL, latest version possible. '''Best stability.'''
 
 
 
|-
 
| '''address'''
 
| string
 
| ''blank''
 
| The address used for connecting to a server, if it is blank, the game will start a local server when attempting to connect.
 
 
 
|-
 
| '''port'''
 
| integer
 
| 30000
 
| The port used when connecting to, or creating a server. For creating a server, ports above 1024 are preferred for security, compatibility and standards compliance reasons.
 
 
 
|-
 
| '''creative_mode'''
 
| boolean
 
| 0
 
| Enables [[creative mode]]. ''This only affects local server.''
 
:'''1''' - Creative mode enabled.
 
:'''0''' - Creative mode disabled.
 
 
 
|-
 
| '''enable_damage'''
 
| boolean
 
| 0
 
| Enables damage. When disabled, players cannot die or receive damage of any kind. ''This only affects local server.''
 
:'''1''' - Damage enabled.
 
:'''0''' - Damage disabled.
 
 
 
|-
 
| '''name'''
 
| string
 
| ''blank''
 
| The name of the player.
 
 
 
|-
 
| '''new_style_leaves'''
 
| boolean
 
| 1
 
| Whether to make [[leaves]] transparent (1) or opaque (0); opaque leaves are faster, thus recommended on slower computers.
 
:'''1''' - Leaves are transparent.
 
:'''0''' - Leaves are opaque.
 
 
 
|-
 
| '''new_style_water'''
 
| boolean
 
| 0
 
| Whether to lower water surface (1) or not (0) compared to other nodes; default water is faster to render and more accurate.
 
:'''1''' - Water surface is lowered compared to other nodes, does not affect physics or gameplay.
 
:'''0''' - Water surfaced is not lowered.
 
 
 
|-
 
| '''opaque_water'''
 
| boolean
 
| 0
 
| Whether to enable opaque [[water]].
 
:'''1''' - Opaque water enabled.
 
:'''0''' - Opaque water disabled.
 
 
 
|-
 
| '''show_debug'''
 
| boolean
 
| 0
 
| Whether to enable debug info (coordinates, draw times...) on startup.
 
:'''1''' - Debug info shown by default.
 
:'''0''' - Debug info hidden by default.
 
 
 
|-
 
| '''smooth_lighting'''
 
| boolean
 
| 1
 
| Whether to use smooth lighting.
 
:'''1''' - Smooth lighting enabled.
 
:'''0''' - Smooth lighting disabled.
 
 
 
|-
 
| '''client_delete_unused_sectors_timeout'''
 
| integer
 
| 600
 
| This will set the client to forget parts of the map from the ''memory'' when they haven't been accessed for N seconds.
 
 
 
|-
 
| '''invert_mouse'''
 
| boolean
 
| 0
 
| Allows the user to invert their mouse vertical axis.
 
:'''1''' - Mouse vertical axis inverted.
 
:'''0''' - Mouse vertical axis not inverted.
 
 
 
|-
 
| '''texture_path'''
 
| string
 
| ''blank''
 
| Allows the user to specify an additional texture directory, from which Minetest will first search for textures.
 
 
 
|-
 
| '''time_speed'''
 
| integer
 
| 72
 
| This changes the speed of the [[Time of day|day-night cycle]] (also applies to local/singleplayer game). When set to 0, the day-night cycle stops. The higher is the value, the faster the day-night cycle will be. 1 is equivalent to real world's day-night cycle.
 
 
 
|-
 
| '''viewing_range_nodes_min'''
 
| integer
 
| 25
 
| Allows the user to change their minimal view range. This is very useful for slow computers. Can be changed using <kbd>KP +</kbd> and <kbd>KP -</kbd> in-game.
 
 
 
|-
 
| '''viewing_range_nodes_max'''
 
| integer
 
| 160
 
| Allows the user to change their maximal view range. This is very useful for slow computers.
 
 
 
|-
 
| '''fov'''
 
| integer
 
| 72
 
| Allows the user to change their field of view.
 
 
 
|-
 
| '''view_bobbing'''
 
| boolean
 
| 1
 
| Whether to enable view and wield item bobbing.
 
:'''1''' - View bobbing enabled.
 
:'''0''' - View bobbing disabled.
 
 
 
|-
 
| '''view_bobbing_amount'''
 
| float
 
| 1.0
 
| Controls view bobbing intensity, 1.0 being 100%, 1.5 being 150% and so on. When set to 0.0, view bobbing is disabled but the wield item still bobs.
 
 
 
|-
 
| '''enable_fog'''
 
| boolean
 
| 1
 
| Whether to fog out the end of the visible area.
 
:'''1''' - Fog enabled.
 
:'''0''' - Fog disabled.
 
 
 
|-
 
| '''enable_clouds'''
 
| boolean
 
| 1
 
| Whether to draw clouds.
 
:'''1''' - Clouds enabled.
 
:'''0''' - Clouds disabled.
 
 
 
|-
 
| '''enable_3d_clouds'''
 
| boolean
 
| 0
 
| Allows the user to enable 3D clouds.
 
:'''1''' - 3D clouds enabled.
 
:'''0''' - 3D clouds disabled (2D clouds used instead).
 
 
 
|-
 
| '''enable_sound'''
 
| boolean
 
| 1
 
| Whether to enable sound; sound can only be enabled if you have installed OpenAL.
 
:'''1''' - Sound enabled.
 
:'''0''' - Sound disabled.
 
 
 
|-
 
| '''sound_volume'''
 
| float
 
| 0.8
 
| Allows the user to change sound volume. 1 is 100% volume whereas 0 is 0% volume.
 
 
 
|}
 
 
 
== Controls ==
 
In <code>minetest.conf</code>, you can configure most (but not all) keys, but a few more keys can be configured which are not configurable in the in-game settings menu; most notably, camera mode and minimap.
 
 
 
A few things to note:
 
 
 
* Controls are written in the format <code>keymap_<action name> = <key name></code>, e.g. <code>keymap_forward = KEY_KEY_W</code>
 
* The list of possible controls (value right of the equals sign) can be seen in [http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3]. If your key isn't listed there, try writing the literal character
 
* To disable a control completely, leave the part right of the equals sign empty, e.g. <code>keymap_toggle_debug =</code>
 
 
 
See [[Controls]] for a list of controls and their setting name (if available).
 
 
 
 
 
[[Category:Server]]
 

Latest revision as of 19:45, 31 December 2024

Mbox warning.png This page has been proposed for deletion for the following reason: "Translated version of a page that is going to be migrated off this Wiki."
If you don't think that this page should be deleted, please explain why on the talk page.