Don't Starve Together

Don't Starve Together

평점이 부족합니다.
ModCategory
   
어워드
즐겨찾기
즐겨찾기됨
즐겨찾기 해제
파일 크기
게시일
업데이트일
56.749 KB
2017년 1월 2일 오후 2시 45분
2018년 5월 23일 오후 6시 57분
변경 사항 9개 ( 보기 )

다운로드 위해 구독하기
ModCategory

설명
MOD config category (client only)

Add category to MOD Configuration screen.
If compatible MOD the config item are categorized.

For MOD creators.
If you are having trouble with many config items, I hope that this MOD will be useful.


Example:
configuration_options = { { name = "ConfigSample", _mod_category = {"config","sample"}, -- *** options = { { description = "False", data = false }, { description = "True", data = true }, }, default = false }, }

Valid data type.
_mod_category = {"table"},
_mod_category = {"table", "multi-items"},
_mod_category = "strings",


Enjoy.
댓글 4
lifeking  [작성자] 2020년 4월 17일 오전 7시 49분 
This MOD is working on my client.
Categories are not displayed for mods that do not contain _mod_category.
UI is added to the left side only for compatible mods, and the category is displayed.
Is there a mod that doesn't work? I want a more detailed situation.
Alexandra 2020년 4월 17일 오전 5시 53분 
Does it work now? It doesn't work for me. How can I fix it ?
lifeking  [작성자] 2019년 7월 13일 오후 11시 10분 
Thank you. I think the way to insert the label is not bad either.
Mobbstar 2019년 7월 13일 오전 9시 19분 
You can also make Splitters by setting empty options like so:

local emptyoptions = {{description="", data=false}}
local function Breaker(name)
return {
name=name,
options=emptyoptions,
default=false,
}
end