Was the minimap zoom changed with 2.0. I got it all figured out for 1.1 and the minimaps looked fine. Now the seem to always zoom far out.
So was there a change, is it maybe a bug? Any infos will be appreciated.
Zoom in both pictures is 3
Old
New
Gui Element Minimap Zoom
Gui Element Minimap Zoom
Wise men speak because they have something to say Fools because they have to say something. (Plato)
Re: Gui Element Minimap Zoom
Hey ran into the same problem here when playing with the zoom values. Seems like zooming has changed. If you use
Seems like the zoom is the new value. Whereas if you did this instead
It should match the old zoom
Code: Select all
local minimap = map_frame.add{
type = "minimap",
name = "minimap",
zoom = 1.0
}
Code: Select all
local minimap = map_frame.add{
type = "minimap",
name = "minimap",
}
minimap.zoom = 1.0
Re: Gui Element Minimap Zoom
Ok, with one the recent patches the zoom works as it did in 1.1, glad I kept that old code nearby
Wise men speak because they have something to say Fools because they have to say something. (Plato)