Don't Starve

Don't Starve

12,778 평점
Minimap HUD
3
30
17
4
6
4
3
3
2
   
어워드
즐겨찾기
즐겨찾기됨
즐겨찾기 해제
파일 크기
게시일
업데이트일
12.777 KB
2013년 10월 23일 오전 12시 40분
2016년 3월 27일 오후 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
2021년 8월 17일 오전 1시 34분
FPS Drop?
duhvoltz
2
2024년 2월 19일 오전 10시 55분
HUD消失BUG的解决方法/Solution to HUD disappearance
脑子里有鲸鱼
13
2023년 10월 25일 오후 2시 22분
Bug: Opening and closing the map sometimes causes the hud to dissapear
Lantigarr
댓글 1,106
viktoriacherry 2024년 3월 23일 오전 9시 55분 
must have
Hex: Devour Coochie 2024년 3월 20일 오전 11시 12분 
causes a lot of lag on SW
CyanShadow 2024년 2월 7일 오전 11시 54분 
very good
WILSON Don't Starve 2024년 1월 23일 오후 1시 41분 
now i can snoop out where the hell wes's hideout is and where he stores my food
Kelmat 2023년 12월 25일 오전 8시 40분 
Low FPS on SW
rude 2023년 10월 23일 오후 2시 59분 
every time i dig up the ground the screen flashes white for 1 frame, very annoying
Adiel 2023년 7월 17일 오후 1시 22분 
Top
篝丿 霧枝 2023년 6월 5일 오후 11시 30분 
我存档废了就很难受
脑子里有鲸鱼 2023년 5월 25일 오전 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.
脑子里有鲸鱼 2023년 5월 25일 오전 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会消失的问题,开玩。