Skip to content

Commit 8a19d72

Browse files
committed
docs: 📝 added missing doc comments
1 parent 4a743cb commit 8a19d72

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

addons/mod_loader/resources/options_profile.gd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
class_name ModLoaderOptionsProfile
22
extends Resource
3+
##
4+
## Class to define and store Mod Loader Options.
35

46

57
## Can be used to disable mods for specific plaforms by using feature overrides
@@ -13,6 +15,8 @@ extends Resource
1315

1416

1517
@export_group("Logging")
18+
## Sets the logging verbosity level.
19+
## Refer to [enum ModLoaderLog.VERBOSITY_LEVEL] for more details.
1620
@export var log_level := ModLoaderLog.VERBOSITY_LEVEL.DEBUG
1721
## Stops the mod loader from logging any deprecation related errors.
1822
@export var ignore_deprecated_errors: bool = false
@@ -42,6 +46,7 @@ extends Resource
4246
## Path to a folder containing mods [br]
4347
## Mod zips should be directly in this folder
4448
@export_dir var override_path_to_mods = ""
49+
## Use this option to override the default path where configs are stored.
4550
@export_dir var override_path_to_configs = ""
4651
## Path to a folder containing workshop items.[br]
4752
## Mods zips are placed in another folder, usually[br]

0 commit comments

Comments
 (0)