|
30 | 30 | # type: bool |
31 | 31 | # pitch_move = false |
32 | 32 |
|
33 | | -# Fast movement (via the "special" key). |
| 33 | +# Fast movement (via the "Aux1" key). |
34 | 34 | # This requires the "fast" privilege on the server. |
35 | 35 | # type: bool |
36 | 36 | # fast_move = false |
|
61 | 61 | # type: float |
62 | 62 | # mouse_sensitivity = 0.2 |
63 | 63 |
|
64 | | -# If enabled, "special" key instead of "sneak" key is used for climbing down and |
| 64 | +# If enabled, "Aux1" key instead of "Sneak" key is used for climbing down and |
65 | 65 | # descending. |
66 | 66 | # type: bool |
67 | 67 | # aux1_descends = false |
|
70 | 70 | # type: bool |
71 | 71 | # doubletap_jump = false |
72 | 72 |
|
73 | | -# If disabled, "special" key is used to fly fast if both fly and fast mode are |
| 73 | +# If disabled, "Aux1" key is used to fly fast if both fly and fast mode are |
74 | 74 | # enabled. |
75 | 75 | # type: bool |
76 | 76 | # always_fly_fast = true |
|
107 | 107 | # type: bool |
108 | 108 | # fixed_virtual_joystick = false |
109 | 109 |
|
110 | | -# (Android) Use virtual joystick to trigger "aux" button. |
111 | | -# If enabled, virtual joystick will also tap "aux" button when out of main circle. |
| 110 | +# (Android) Use virtual joystick to trigger "Aux1" button. |
| 111 | +# If enabled, virtual joystick will also tap "Aux1" button when out of main circle. |
112 | 112 | # type: bool |
113 | | -# virtual_joystick_triggers_aux = false |
| 113 | +# virtual_joystick_triggers_aux1 = false |
114 | 114 |
|
115 | 115 | # Enable joysticks |
116 | 116 | # type: bool |
|
188 | 188 | # Key for moving fast in fast mode. |
189 | 189 | # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 |
190 | 190 | # type: key |
191 | | -# keymap_special1 = KEY_KEY_E |
| 191 | +# keymap_aux1 = KEY_KEY_E |
192 | 192 |
|
193 | 193 | # Key for opening the chat window. |
194 | 194 | # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 |
|
570 | 570 | # trilinear_filter = false |
571 | 571 |
|
572 | 572 | # Filtered textures can blend RGB values with fully-transparent neighbors, |
573 | | -# which PNG optimizers usually discard, sometimes resulting in a dark or |
574 | | -# light edge to transparent textures. Apply this filter to clean that up |
575 | | -# at texture load time. |
| 573 | +# which PNG optimizers usually discard, often resulting in dark or |
| 574 | +# light edges to transparent textures. Apply a filter to clean that up |
| 575 | +# at texture load time. This is automatically enabled if mipmapping is enabled. |
576 | 576 | # type: bool |
577 | 577 | # texture_clean_transparent = false |
578 | 578 |
|
579 | 579 | # When using bilinear/trilinear/anisotropic filters, low-resolution textures |
580 | 580 | # can be blurred, so automatically upscale them with nearest-neighbor |
581 | 581 | # interpolation to preserve crisp pixels. This sets the minimum texture size |
582 | 582 | # for the upscaled textures; higher values look sharper, but require more |
583 | | -# memory. Powers of 2 are recommended. Setting this higher than 1 may not |
584 | | -# have a visible effect unless bilinear/trilinear/anisotropic filtering is |
585 | | -# enabled. |
| 583 | +# memory. Powers of 2 are recommended. This setting is ONLY applies if |
| 584 | +# bilinear/trilinear/anisotropic filtering is enabled. |
586 | 585 | # This is also used as the base node texture size for world-aligned |
587 | 586 | # texture autoscaling. |
588 | 587 | # type: int |
|
662 | 661 | # type: bool |
663 | 662 | # enable_waving_plants = false |
664 | 663 |
|
| 664 | +#### Dynamic shadows |
| 665 | + |
| 666 | +# Set to true to enable Shadow Mapping. |
| 667 | +# Requires shaders to be enabled. |
| 668 | +# type: bool |
| 669 | +# enable_dynamic_shadows = false |
| 670 | + |
| 671 | +# Set the shadow strength. |
| 672 | +# Lower value means lighter shadows, higher value means darker shadows. |
| 673 | +# type: float min: 0.05 max: 1 |
| 674 | +# shadow_strength = 0.2 |
| 675 | + |
| 676 | +# Maximum distance to render shadows. |
| 677 | +# type: float min: 10 max: 1000 |
| 678 | +# shadow_map_max_distance = 120.0 |
| 679 | + |
| 680 | +# Texture size to render the shadow map on. |
| 681 | +# This must be a power of two. |
| 682 | +# Bigger numbers create better shadowsbut it is also more expensive. |
| 683 | +# type: int min: 128 max: 8192 |
| 684 | +# shadow_map_texture_size = 1024 |
| 685 | + |
| 686 | +# Sets shadow texture quality to 32 bits. |
| 687 | +# On false, 16 bits texture will be used. |
| 688 | +# This can cause much more artifacts in the shadow. |
| 689 | +# type: bool |
| 690 | +# shadow_map_texture_32bit = true |
| 691 | + |
| 692 | +# Enable poisson disk filtering. |
| 693 | +# On true uses poisson disk to make "soft shadows". Otherwise uses PCF filtering. |
| 694 | +# type: bool |
| 695 | +# shadow_poisson_filter = true |
| 696 | + |
| 697 | +# Define shadow filtering quality |
| 698 | +# This simulates the soft shadows effect by applying a PCF or poisson disk |
| 699 | +# but also uses more resources. |
| 700 | +# type: enum values: 0, 1, 2 |
| 701 | +# shadow_filters = 1 |
| 702 | + |
| 703 | +# Enable colored shadows. |
| 704 | +# On true translucent nodes cast colored shadows. This is expensive. |
| 705 | +# type: bool |
| 706 | +# shadow_map_color = false |
| 707 | + |
| 708 | +# Set the shadow update time. |
| 709 | +# Lower value means shadows and map updates faster, but it consume more resources. |
| 710 | +# Minimun value 0.001 seconds max value 0.2 seconds |
| 711 | +# type: float min: 0.001 max: 0.2 |
| 712 | +# shadow_update_time = 0.2 |
| 713 | + |
| 714 | +# Set the soft shadow radius size. |
| 715 | +# Lower values mean sharper shadows bigger values softer. |
| 716 | +# Minimun value 1.0 and max value 10.0 |
| 717 | +# type: float min: 1 max: 10 |
| 718 | +# shadow_soft_radius = 1.0 |
| 719 | + |
| 720 | +# Set the tilt of Sun/Moon orbit in degrees |
| 721 | +# Value of 0 means no tilt / vertical orbit. |
| 722 | +# Minimun value 0.0 and max value 60.0 |
| 723 | +# type: float min: 0 max: 60 |
| 724 | +# shadow_sky_body_orbit_tilt = 0.0 |
| 725 | + |
665 | 726 | ### Advanced |
666 | 727 |
|
667 | 728 | # Arm inertia, gives a more realistic movement of |
|
694 | 755 | # type: float min: 0 max: 0.25 |
695 | 756 | # near_plane = 0.1 |
696 | 757 |
|
697 | | -# Width component of the initial window size. |
| 758 | +# Width component of the initial window size. Ignored in fullscreen mode. |
698 | 759 | # type: int min: 1 |
699 | 760 | # screen_w = 1024 |
700 | 761 |
|
701 | | -# Height component of the initial window size. |
| 762 | +# Height component of the initial window size. Ignored in fullscreen mode. |
702 | 763 | # type: int min: 1 |
703 | 764 | # screen_h = 600 |
704 | 765 |
|
|
710 | 771 | # type: bool |
711 | 772 | # fullscreen = false |
712 | 773 |
|
713 | | -# Bits per pixel (aka color depth) in fullscreen mode. |
714 | | -# type: int |
715 | | -# fullscreen_bpp = 24 |
716 | | - |
717 | 774 | # Vertical screen synchronization. |
718 | 775 | # type: bool |
719 | 776 | # vsync = false |
|
1011 | 1068 | # font_path_italic = fonts/Arimo-Italic.ttf |
1012 | 1069 |
|
1013 | 1070 | # type: filepath |
1014 | | -# font_path_bolditalic = fonts/Arimo-BoldItalic.ttf |
| 1071 | +# font_path_bold_italic = fonts/Arimo-BoldItalic.ttf |
1015 | 1072 |
|
1016 | 1073 | # Font size of the monospace font in point (pt). |
1017 | 1074 | # type: int min: 1 |
|
1031 | 1088 | # mono_font_path_italic = fonts/Cousine-Italic.ttf |
1032 | 1089 |
|
1033 | 1090 | # type: filepath |
1034 | | -# mono_font_path_bolditalic = fonts/Cousine-BoldItalic.ttf |
1035 | | - |
1036 | | -# Font size of the fallback font in point (pt). |
1037 | | -# type: int min: 1 |
1038 | | -# fallback_font_size = 15 |
1039 | | - |
1040 | | -# Shadow offset (in pixels) of the fallback font. If 0, then shadow will not be drawn. |
1041 | | -# type: int |
1042 | | -# fallback_font_shadow = 1 |
1043 | | - |
1044 | | -# Opaqueness (alpha) of the shadow behind the fallback font, between 0 and 255. |
1045 | | -# type: int min: 0 max: 255 |
1046 | | -# fallback_font_shadow_alpha = 128 |
| 1091 | +# mono_font_path_bold_italic = fonts/Cousine-BoldItalic.ttf |
1047 | 1092 |
|
1048 | 1093 | # Path of the fallback font. |
1049 | 1094 | # If “freetype” setting is enabled: Must be a TrueType font. |
|
1364 | 1409 | # type: string |
1365 | 1410 | # chat_message_format = <@name> @message |
1366 | 1411 |
|
| 1412 | +# If the execution of a chat command takes longer than this specified time in |
| 1413 | +# seconds, add the time information to the chat command message |
| 1414 | +# type: float |
| 1415 | +# chatcommand_msg_time_threshold = 0.1 |
| 1416 | + |
1367 | 1417 | # A message to be displayed to all clients when the server shuts down. |
1368 | 1418 | # type: string |
1369 | 1419 | # kick_msg_shutdown = Server shutting down. |
|
1682 | 1732 |
|
1683 | 1733 | # Set the language. Leave empty to use the system language. |
1684 | 1734 | # A restart is required after changing this. |
1685 | | -# type: enum values: , ar, ca, cs, da, de, dv, el, en, eo, es, et, eu, fil, fr, hu, id, it, ja, ja_KS, jbo, kk, kn, lo, lt, ms, my, nb, nl, nn, pl, pt, pt_BR, ro, ru, sl, sr_Cyrl, sv, sw, th, tr, uk, vi |
| 1735 | +# type: enum values: , be, bg, ca, cs, da, de, el, en, eo, es, et, eu, fi, fr, gd, gl, hu, id, it, ja, jbo, kk, ko, lt, lv, ms, nb, nl, nn, pl, pt, pt_BR, ro, ru, sk, sl, sr_Cyrl, sr_Latn, sv, sw, tr, uk, vi, zh_CN, zh_TW |
1686 | 1736 | # language = |
1687 | 1737 |
|
1688 | 1738 | # Level of logging to be written to debug.txt: |
|
1714 | 1764 |
|
1715 | 1765 | ## Advanced |
1716 | 1766 |
|
1717 | | -# Default timeout for cURL, stated in milliseconds. |
1718 | | -# Only has an effect if compiled with cURL. |
| 1767 | +# Maximum time an interactive request (e.g. server list fetch) may take, stated in milliseconds. |
1719 | 1768 | # type: int |
1720 | | -# curl_timeout = 5000 |
| 1769 | +# curl_timeout = 20000 |
1721 | 1770 |
|
1722 | 1771 | # Limits number of parallel HTTP requests. Affects: |
1723 | 1772 | # - Media fetch if server uses remote_media setting. |
|
1727 | 1776 | # type: int |
1728 | 1777 | # curl_parallel_limit = 8 |
1729 | 1778 |
|
1730 | | -# Maximum time in ms a file download (e.g. a mod download) may take. |
| 1779 | +# Maximum time a file download (e.g. a mod download) may take, stated in milliseconds. |
1731 | 1780 | # type: int |
1732 | 1781 | # curl_file_download_timeout = 300000 |
1733 | 1782 |
|
1734 | | -# Makes DirectX work with LuaJIT. Disable if it causes troubles. |
1735 | | -# type: bool |
1736 | | -# high_precision_fpu = true |
1737 | | - |
1738 | 1783 | # Replaces the default main menu with a custom one. |
1739 | 1784 | # type: string |
1740 | 1785 | # main_menu_script = |
|
0 commit comments