Add color luts and increase day-night-cycle from 2 to 5 minutes
This commit is contained in:
parent
d9ec041862
commit
4d0f63d9ee
1 changed files with 14 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ PlanetsLib:extend({
|
||||||
departure = { "default-rocket-a" }
|
departure = { "default-rocket-a" }
|
||||||
},
|
},
|
||||||
surface_properties = {
|
surface_properties = {
|
||||||
["day-night-cycle"] = 2 * minute,
|
["day-night-cycle"] = 5 * minute,
|
||||||
["gravity"] = 4,
|
["gravity"] = 4,
|
||||||
["pressure"] = 900,
|
["pressure"] = 900,
|
||||||
["solar-power"] = 100
|
["solar-power"] = 100
|
||||||
|
|
@ -65,7 +65,19 @@ PlanetsLib:extend({
|
||||||
asteroid_spawn_influence = 1,
|
asteroid_spawn_influence = 1,
|
||||||
asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9),
|
asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9),
|
||||||
surface_render_parameters = {
|
surface_render_parameters = {
|
||||||
clouds = effects.default_clouds_effect_properties()
|
clouds = effects.default_clouds_effect_properties(),
|
||||||
|
day_night_cycle_color_lookup = {
|
||||||
|
{ 0.00, Lignumis.graphics .. "color_luts/lut-noon.png" },
|
||||||
|
{ 0.10, Lignumis.graphics .. "color_luts/lut-day.png" },
|
||||||
|
{ 0.20, Lignumis.graphics .. "color_luts/lut-day.png" },
|
||||||
|
{ 0.35, Lignumis.graphics .. "color_luts/lut-sunset.png" },
|
||||||
|
{ 0.45, Lignumis.graphics .. "color_luts/lut-night.png" },
|
||||||
|
{ 0.55, Lignumis.graphics .. "color_luts/lut-night.png" },
|
||||||
|
{ 0.65, Lignumis.graphics .. "color_luts/lut-dawn.png" },
|
||||||
|
{ 0.75, Lignumis.graphics .. "color_luts/lut-day.png" },
|
||||||
|
{ 0.90, Lignumis.graphics .. "color_luts/lut-day.png" },
|
||||||
|
{ 1.00, Lignumis.graphics .. "color_luts/lut-noon.png" },
|
||||||
|
}
|
||||||
},
|
},
|
||||||
persistent_ambient_sounds = {
|
persistent_ambient_sounds = {
|
||||||
base_ambience = { filename = Lignumis.sound .. "ambient/forest-ambience.ogg", volume = 0.1 },
|
base_ambience = { filename = Lignumis.sound .. "ambient/forest-ambience.ogg", volume = 0.1 },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue