mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
parent
42a9b45c21
commit
0e698e63b3
@ -608,8 +608,9 @@ static void fillTileAttribs(ITextureSource *tsrc, TileLayer *layer,
|
||||
layer->material_type = material_type;
|
||||
|
||||
bool has_scale = tiledef.scale > 0;
|
||||
if (((tsettings.autoscale_mode == AUTOSCALE_ENABLE) && !has_scale) ||
|
||||
(tsettings.autoscale_mode == AUTOSCALE_FORCE)) {
|
||||
bool use_autoscale = tsettings.autoscale_mode == AUTOSCALE_FORCE ||
|
||||
(tsettings.autoscale_mode == AUTOSCALE_ENABLE && !has_scale);
|
||||
if (use_autoscale && layer->texture) {
|
||||
auto texture_size = layer->texture->getOriginalSize();
|
||||
float base_size = tsettings.node_texture_size;
|
||||
float size = std::fmin(texture_size.Width, texture_size.Height);
|
||||
|
Loading…
Reference in New Issue
Block a user