Skip to content

Commit

Permalink
Disable desynchronize_mapblock_texture_animation by default (#13514)
Browse files Browse the repository at this point in the history
  • Loading branch information
rollerozxa committed May 26, 2023
1 parent d6eb6ff commit f4cb16c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -1667,7 +1667,7 @@ enable_vbo (VBO) bool true
cloud_radius (Cloud radius) int 12 1 62

# Whether node texture animations should be desynchronized per mapblock.
desynchronize_mapblock_texture_animation (Desynchronize block animation) bool true
desynchronize_mapblock_texture_animation (Desynchronize block animation) bool false

# Enables caching of facedir rotated meshes.
enable_mesh_cache (Mesh cache) bool false
Expand Down
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -2681,7 +2681,7 @@

# Whether node texture animations should be desynchronized per mapblock.
# type: bool
# desynchronize_mapblock_texture_animation = true
# desynchronize_mapblock_texture_animation = false

# Enables caching of facedir rotated meshes.
# type: bool
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -231,7 +231,7 @@ void set_default_settings()
settings->setDefault("gui_scaling", "1.0");
settings->setDefault("gui_scaling_filter", "false");
settings->setDefault("gui_scaling_filter_txr2img", "true");
settings->setDefault("desynchronize_mapblock_texture_animation", "true");
settings->setDefault("desynchronize_mapblock_texture_animation", "false");
settings->setDefault("hud_hotbar_max_width", "1.0");
settings->setDefault("enable_local_map_saving", "false");
settings->setDefault("show_entity_selectionbox", "false");
Expand Down

0 comments on commit f4cb16c

Please sign in to comment.