-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdmc_autostore.cfg
47 lines (35 loc) · 1.37 KB
/
dmc_autostore.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
--==================================================--
-- DMC AutoStore config file
--==================================================--
-- option TIMER_MIN, milliseconds
--
-- the minimum amount of time (in milliseconds) which a modification can be saved
-- this resets if another modification is made. resets to the min timer
-- can happen repeatedly, however, a data save will never go over TIMER_MAX
--
-- TIMER_MIN Default is 1000
-- TIMER_MIN = 2000
--==================================================--
-- option TIMER_MAX, milliseconds
--
-- the maximum amount of time (in milliseconds) before data is certain to be saved
-- this timer is not reset like TIMER_MIN, but will be stopped by TIMER_MIN
-- if TIMER_MIN is allowed to expire and a save event takes place
--
-- TIMER_MAX Default is 4000
-- TIMER_MAX = 6000
--==================================================--
-- option DATA_FILENAME
-- the name of the autostore data file.
-- an extension of '.json' will automatically be appended
--
-- DATA_FILENAME default is 'dmc_autostore'
-- DATA_FILENAME = dmc_autostore
--==================================================--
-- option PLUGIN_FILE
-- the name of the file with AutoStore plugin functionality.
-- this is a Lua file which will be imported.
--
-- reference starts at project root
-- PLUGIN_FILE = 'libs.dmc_autostore_plugins'
-- PLUGIN_FILE = 'dmc_autostore_plugins'