[General] Blow up the size of the minimap in the world editor?

Status
Not open for further replies.
Level 6
Joined
Oct 3, 2015
Messages
73
Is there a way to drastically increase the size of the minimap window in the world editor? I'm trying to trace a map onto the world editor pixel by pixel; it's so tedious and I have to get really close to the screen to see it even a little. Any fix or am I SOL?
 
Level 10
Joined
Mar 26, 2017
Messages
376
Try this (lua):

Lua:
BlzHideOriginFrames(true)
local f = BlzGetOriginFrame(ORIGIN_FRAME_MINIMAP, 0)
BlzFrameClearAllPoints(f)
BlzFrameSetAbsPoint(f, FRAMEPOINT_BOTTOMLEFT, 0, 0)
BlzFrameSetAbsPoint(f, FRAMEPOINT_TOPRIGHT, .8, .6)
BlzFrameSetVisible(f, true)



Just read you want to do it from the World Editor. You can download the war3mapMap.blp which is the map image, but it is low resolution. You can enlarge it though, if you don't mind it being pixely.
 
Last edited:
Status
Not open for further replies.
Top