forked from LeGoffLoic/Nodz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default_config.json
77 lines (67 loc) · 1.99 KB
/
default_config.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
// General > Edit values BUT do not delete.
"scene_width": 2000,
"scene_height": 2000,
"grid_size": 36,
"antialiasing": true,
"antialiasing_boost": true,
"smooth_pixmap": true,
"node_font": "Arial",
"node_font_size": 12,
"attr_font": "Arial",
"attr_font_size": 10,
"mouse_bounding_box": 80,
// Shapes > Edit values BUT do not delete.
"node_width": 200,
"node_height": 25,
"node_radius": 10,
"node_border": 2,
"node_attr_height": 30,
"connection_width": 2,
// Default colors > Edit values BUT do not delete.
"alternate_value": 20,
"bg_color": [40, 40,40, 255],
"grid_color": [50, 50, 50, 255],
"slot_border": [50, 50, 50, 255],
"non_connectable_color": [100, 100, 100, 255],
"connection_color": [255, 155, 0, 255],
"node_default": {
"bg": [130, 130, 130, 255],
"border": [50, 50, 50, 255],
"border_sel": [250, 250, 250, 255],
"text": [255, 255, 255, 255]
},
"attr_default": {
"bg": [160, 160, 160, 255],
"text": [220, 220, 220, 255],
"plug": [255, 155, 0, 255],
"socket": [255, 155, 0, 255]
},
// Custom colors > Add and remove as you want.
// Don't forget to edit the end of the dictionary if editing the
// following part.
"node_preset_1": {
"bg": [80, 80, 80, 255],
"border": [50, 50, 50, 255],
"border_sel": [170, 80, 80, 255],
"text": [230, 230, 230, 255]
},
"attr_preset_1": {
"bg": [60, 60, 60, 255],
"text": [220, 220, 220, 255],
"plug": [255, 155, 0, 255],
"socket": [255, 155, 0, 255]
},
"attr_preset_2":{
"bg": [250, 120, 120, 255],
"text": [220, 220, 220, 255],
"plug": [255, 155, 0, 255],
"socket": [255, 155, 0, 255]
},
"attr_preset_3":{
"bg": [160, 160, 160, 255],
"text": [220, 220, 220, 255],
"plug": [255, 155, 0, 255],
"socket": [255, 155, 0, 255]
}
}