-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstellaitionConfig.gd
More file actions
37 lines (26 loc) · 1.05 KB
/
ConstellaitionConfig.gd
File metadata and controls
37 lines (26 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
static var config: Dictionary = {
## Defines a custom callable to call when logging infomation
"custom_loging_method": Callable(),
## Defines a custom callable to call when logging infomation verbosely
"custom_loging_method_verbose": Callable(),
## A String prefix to print before all message logs
"log_prefix": "CTL:",
## Default IP address to bind to
"bind_address": "",
## Default IP address to bind to
"bind_interface": "",
## File location for a user config override
"user_config_file_location": "user://",
## File name for the user config override
"user_config_file_name": "constellation.conf",
## NodeID of the local node
"node_id": UUID_Util.v4(),
## Node name of the local node
"node_name": "ConstellationNode",
## SessionID of the previous session the local node was in
"session_id": "",
## True if the previous session
"session_auto_rejoin": true,
## True if this node should auto create a session once online, asuming previous session is is null and the node is not already in a session
"auto_create_session": true
}