-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
24 lines (20 loc) · 1.03 KB
/
Copy pathconfig.lua
File metadata and controls
24 lines (20 loc) · 1.03 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
config = {}
config.disable_ambient_sounds = true -- disable ambient sounds like traffic, sirens. note: also disables Cayo Perico ambient sounds
config.custom_water_name = 'ls_water' -- set to nil to disable, or set to a key in config.custom_water to load a custom water file
config.custom_water = {
['ls_water'] = {
resource_name = GetCurrentResourceName(), path = 'data/water.xml', deep_ocean_scaler = 1.0, global_water_type = 0
},
['ls_cayo_water'] = {
resource_name = GetCurrentResourceName(), path = 'data/water_ls_cayo.xml', deep_ocean_scaler = 0.0, global_water_type = 1
},
-- example custom water config, you can use water from another resource or with different settings
-- by adding a new entry here and setting config.use_custom_water to the key of that entry:
--
-- Parameters:
--['your_water_name'] = {
-- resource_name = 'your_resource_name', path = 'path/to/your/water.xml', deep_ocean_scaler = 0.0, global_water_type = 1
--}
}
config.passes = 3
config.pass_delay = 1000