Don't Starve Together

Don't Starve Together

Pas assez d'évaluations
ModCategory
   
Récompenser
Ajouter aux favoris
Favoris
Retirer des favoris
Taille du fichier
Publié le
Mis à jour le
56.749 KB
2 janv. 2017 à 14h45
23 mai 2018 à 18h57
9 notes de changement ( voir )

S'abonner pour télécharger
ModCategory

Description
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 commentaires
lifeking  [créateur] 17 avr. 2020 à 7h49 
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 17 avr. 2020 à 5h53 
Does it work now? It doesn't work for me. How can I fix it ?
lifeking  [créateur] 13 juil. 2019 à 23h10 
Thank you. I think the way to insert the label is not bad either.
Mobbstar 13 juil. 2019 à 9h19 
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