Skip to content

Commit a9294c4

Browse files
add profile scaffolding
impl. the usage of these into ModLoaderLog
1 parent 86c98bc commit a9294c4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

addons/mod_loader/resources/options_profile.gd

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ enum VERSION_VALIDATION {
5555
## [code]ModLoader:Dependency[/code] - ignore the exact name [br]
5656
## [code]ModLoader:*[/code] - ignore all beginning with this name [br]
5757
@export var ignored_mod_names_in_log: Array[String] = []
58+
## Highlighting color for warning type log messages
59+
@export var warning_color := Color("#ffff00")
60+
## Highlighting color for success type log messages
61+
@export var success_color := Color("#008000")
62+
## Highlighting color for info type log messages
63+
@export var info_color := Color("#4169e1")
64+
## Highlighting color for debug type log messages
65+
@export var debug_color := Color("#ffffff")
66+
## Highlighting color for hint type log messages
5867
@export var hint_color := Color("#70bafa")
5968

6069
@export_group("Game Data")

0 commit comments

Comments
 (0)