-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIDBConfig.gd
More file actions
31 lines (25 loc) · 859 Bytes
/
UIDBConfig.gd
File metadata and controls
31 lines (25 loc) · 859 Bytes
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
## All user defined UIPanels
static var panels: Dictionary[String, PackedScene]
## All user defined UIPanels
static var popups: Dictionary[String, PackedScene]
## All user defined UIPanels
static var components: Dictionary[String, PackedScene]
## All user defined UIPanels
static var data_inputs: Dictionary[Data.Type, Variant] = {
Data.Type.PACKEDSCENE: {
Data.Sub.Type.PACKEDSCENE_UIPANEL: load(CoreUIDB._d("DataInputUIPanel")),
}
}
## All user defined UIPanels
static var class_icons: Dictionary[String, Texture2D]
## Categorys of the user defined panels
static var panels_by_category: Dictionary[String, Dictionary]
## Config
static var config: Dictionary[String, Variant] = {
"panels": panels,
"popups": popups,
"components": components,
"data_inputs": data_inputs,
"class_icons": class_icons,
"panels_by_category": panels_by_category
}