Don't Starve

Don't Starve

12,749 beoordelingen
Minimap HUD
3
30
17
4
6
4
3
3
2
   
Prijs
Toevoegen aan favorieten
Toegevoegd aan favorieten
Verwijderen uit favorieten
Bestandsgrootte
Geplaatst op
Bijgewerkt op
12.777 KB
23 okt 2013 om 0:40
27 mrt 2016 om 12:11
11 wijzigingsnotities (weergeven)

Abonneren om te downloaden
Minimap HUD

Omschrijving
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
Populaire discussies Alles weergeven (13)
31
17 aug 2021 om 1:34
FPS Drop?
duhvoltz
2
19 feb om 10:55
HUD消失BUG的解决方法/Solution to HUD disappearance
脑子里有鲸鱼
13
25 okt 2023 om 14:22
Bug: Opening and closing the map sometimes causes the hud to dissapear
Lantigarr
1.106 opmerkingen
viktoriacherry 23 mrt om 9:55 
must have
Hex: Devour Coochie 20 mrt om 11:12 
causes a lot of lag on SW
CyanShadow 7 feb om 11:54 
very good
WILSON Don't Starve 23 jan om 13:41 
now i can snoop out where the hell wes's hideout is and where he stores my food
Kelmat 25 dec 2023 om 8:40 
Low FPS on SW
rude 23 okt 2023 om 14:59 
every time i dig up the ground the screen flashes white for 1 frame, very annoying
Adiel 17 jul 2023 om 13:22 
Top
篝丿 霧枝 5 jun 2023 om 23:30 
我存档废了就很难受
脑子里有鲸鱼 25 mei 2023 om 5:08 
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.
脑子里有鲸鱼 25 mei 2023 om 5:08 
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会消失的问题,开玩。