Don't Starve

Don't Starve

12,806 ratings
Minimap HUD
3
30
17
4
6
4
3
3
2
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
12.777 KB
Oct 23, 2013 @ 12:40am
Mar 27, 2016 @ 12:11pm
11 Change Notes ( view )

Subscribe to download
Minimap HUD

Description
Adds a minimap to the HUD
  • The minimap is fully functional; it can be zoomed using the zoom map binds (defaulted to the mousewheel) and can be panned by clicking and dragging.
  • The minimap can be collapsed by hovering over it and clicking the "Close Minimap" button
  • The zoom levels of the minimap and the map screen are both saved and are independent of eachother

FAQ

Q: Is it possible to change the shape of the minimap?
A: As far as I know, no, it is not possible.

Q: Is this mod compatible with X mod?
A: Yes, it should be compatible.

External Resources
Popular Discussions View All (13)
31
Aug 17, 2021 @ 1:34am
FPS Drop?
duhvoltz
2
Feb 19 @ 10:55am
HUD消失BUG的解决方法/Solution to HUD disappearance
脑子里有鲸鱼
13
Oct 25, 2023 @ 2:22pm
Bug: Opening and closing the map sometimes causes the hud to dissapear
Lantigarr
1,105 Comments
viktoriacherry Mar 23 @ 9:55am 
must have
Hex: Devour Coochie Mar 20 @ 11:12am 
causes a lot of lag on SW
CyanShadow Feb 7 @ 11:54am 
very good
WILSON Don't Starve Jan 23 @ 1:41pm 
now i can snoop out where the hell wes's hideout is and where he stores my food
Kelmat Dec 25, 2023 @ 8:40am 
Low FPS on SW
rude Oct 23, 2023 @ 2:59pm 
every time i dig up the ground the screen flashes white for 1 frame, very annoying
Adiel Jul 17, 2023 @ 1:22pm 
Top
篝丿 霧枝 Jun 5, 2023 @ 11:30pm 
我存档废了就很难受
脑子里有鲸鱼 May 25, 2023 @ 5:08am 
EN VERSION:
Adjust "update throtting"(mine is 6ups) in mod config can really help improving fps, but when u do that u'll find ur full game HUD disappear when u open/close ur map, and then u can't quit ur game. Now I solved this problem:
1.Find the mod's source file in dont_starve\mods\workshop-188251898\scripts\widgets\minimapwidget.lua
2.Open it and find this function: function MiniMapWidget:OnHide()
3.Replace this function with the code below:
function MiniMapWidget:OnHide()
if self.minimap:IsVisible() then
self.minimap:ToggleVisibility()
end
self.minimap:Zoom(-1000)
self.minimap:Zoom(self.mapscreenzoom)
self.minimap:ResetOffset()
self:DisableMinimapUpdating()
end

4.Now this problem is solved, enjoy ur game.
脑子里有鲸鱼 May 25, 2023 @ 5:08am 
mod设置中调整"update throtting"(我开的6ups)就能显著提高帧数。但是这样会导致开关游戏地图时,很大概率会让整个游戏HUD消失并且无法正常退出游戏。以下是解决方法:
1.找到这个mod源文件里的 dont_starve\mods\workshop-188251898\scripts\widgets\minimapwidget.lua 这个文件
2.打开它找到 function MiniMapWidget:OnHide() 这个函数
3.将如下代码替换掉这个函数(从function开始到end)
function MiniMapWidget:OnHide()
if self.minimap:IsVisible() then
self.minimap:ToggleVisibility()
end
self.minimap:Zoom(-1000)
self.minimap:Zoom(self.mapscreenzoom)
self.minimap:ResetOffset()
self:DisableMinimapUpdating()
end

4.解决了开关地图HUD会消失的问题,开玩。