Don't Starve
12,819 оценки
Minimap HUD
3
30
17
4
6
4
3
3
2
   
Награда
Добавяне към любими
В любими
Премахване от любими
Размер на файла
Публикуван на
Обновен на
12.777 KB
23 окт. 2013 в 0:40
27 март 2016 в 12:11
11 бележки за промени ( преглед )

Абониране, за да се свали
Minimap HUD

Описание
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
Популярни дискусии Всички (13)
31
17 авг. 2021 в 1:34
FPS Drop?
duhvoltz
2
19 февр. в 10:55
HUD消失BUG的解决方法/Solution to HUD disappearance
脑子里有鲸鱼
13
25 окт. 2023 в 14:22
Bug: Opening and closing the map sometimes causes the hud to dissapear
Lantigarr
1 106 коментара
Duchess 24 май в 5:29 
I've subscribed to the MOD. However, in game it says its disabled. How do I enable it?
viktoriacherry 23 март в 9:55 
must have
Hex: Devour Coochie 20 март в 11:12 
causes a lot of lag on SW
CyanShadow 7 февр. в 11:54 
very good
WILSON Don't Starve 23 ян. в 13:41 
now i can snoop out where the hell wes's hideout is and where he stores my food
Kelmat 25 дек. 2023 в 8:40 
Low FPS on SW
rude 23 окт. 2023 в 14:59 
every time i dig up the ground the screen flashes white for 1 frame, very annoying
Adiel 17 юли 2023 в 13:22 
Top
篝丿 霧枝 5 юни 2023 в 23:30 
我存档废了就很难受
脑子里有鲸鱼 25 май 2023 в 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.