-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdmc_library.cfg
119 lines (86 loc) · 2.58 KB
/
dmc_library.cfg
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[DMC_LIBRARY]
--==================================================--
-- option LOCATION, path
--
-- the path of the location of DMC Library modules
-- with this you can organize your project how you wish
-- and DMC Library modules will still work
--
-- the value is relative to the project and can include subfolders
--
-- LOCATION Default is '', or root-level of project
LOCATION:PATH = scripts/dmc
[DMC_KOMPATIBLE]
--==================================================--
-- option MAKE_GLOBAL, boolean
--
-- replaces entire display object functionality with dmc_kolor
--
-- options are true or false
--
-- MAKE_GLOBAL defaults to false
MAKE_GLOBAL:BOOL = true
ACTIVATE_FILLCOLOR:BOOL = true
PRINT_WARNINGS:BOOL = false
[DMC_KOLOR]
--==================================================--
-- option LOCATION, path
--
-- the path of the location of DMC Kolor module
-- with this you can organize your project how you wish
--
-- the value is relative to the project and can include subfolders
--
-- LOCATION Default is '', or root-level of project
LOCATION:PATH = scripts.dmc
PRINT_WARNINGS:BOOL = false
--==================================================--
-- option NAMED_COLOR_FILE, file
--
-- the path of the json color file
--
-- the value is relative to the project and can include subfolders
--
-- there is no default value
-- NAMED_COLOR_FILE:FILE = named_colors_hdr.json
NAMED_COLOR_FILE = scripts/dmc/data/named_colors_rgb.json
-- NAMED_COLOR_FILE:FILE = named_colors_hex.json
--==================================================--
-- option NAMED_COLOR_FORMAT, string
--
-- the type of data in the named color file
--
-- options are HDR, RGB, HEX
--
-- there is no default value
NAMED_COLOR_FORMAT:STR = RGB
--==================================================--
-- option DEFAULT_COLOR_SPACE, string
--
-- sets the default behavior of Corona methods such as setFillColor()
--
-- options are HDR or RGB
--
-- if value is RGB then the methods expect RGB values, eg ( 255, 255, 150 )
-- if value is HDR then the methods expect HDR values, eg ( 1, 1, .5 )
--
-- DEFAULT_COLOR_SPACE defaults to RGB
-- DEFAULT_COLOR_SPACE:STR = HDR
--==================================================--
-- option CACHE_IS_ACTIVE, boolean
--
-- turns on the color cache
--
-- options are true or false
--
-- CACHE_IS_ACTIVE defaults to false
-- CACHE_IS_ACTIVE:BOOL = true
--==================================================--
-- option MAKE_GLOBAL, boolean
--
-- replaces entire display object functionality with dmc_kolor
--
-- options are true or false
--
-- MAKE_GLOBAL defaults to false
MAKE_GLOBAL:BOOL = true