diff options
| author | tpart <tpart120@proton.me> | 2024-07-27 14:15:51 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-07-27 14:15:55 +0200 |
| commit | 3a5e8ad83abe6b7daf8e6168a72c143d96538497 (patch) | |
| tree | e4951ce1b3bd8dc368b80aaf390fe61b37af9e90 /client/map/environment/presets | |
| parent | ee7f28b87db60506278f7ae6ce61253062852713 (diff) | |
| download | hurrycurry-3a5e8ad83abe6b7daf8e6168a72c143d96538497.tar hurrycurry-3a5e8ad83abe6b7daf8e6168a72c143d96538497.tar.bz2 hurrycurry-3a5e8ad83abe6b7daf8e6168a72c143d96538497.tar.zst | |
Add night sky support; Refactor environment system
Diffstat (limited to 'client/map/environment/presets')
| -rw-r--r-- | client/map/environment/presets/day_sky.tres | 4 | ||||
| -rw-r--r-- | client/map/environment/presets/night_sky.tres | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/client/map/environment/presets/day_sky.tres b/client/map/environment/presets/day_sky.tres new file mode 100644 index 00000000..0e1c9458 --- /dev/null +++ b/client/map/environment/presets/day_sky.tres @@ -0,0 +1,4 @@ +[gd_resource type="ProceduralSkyMaterial" format=3 uid="uid://617pq1rgdgbn"] + +[resource] +ground_bottom_color = Color(0.0826605, 0.065772, 0.0461518, 1) diff --git a/client/map/environment/presets/night_sky.tres b/client/map/environment/presets/night_sky.tres new file mode 100644 index 00000000..f1b888ef --- /dev/null +++ b/client/map/environment/presets/night_sky.tres @@ -0,0 +1,7 @@ +[gd_resource type="ProceduralSkyMaterial" format=3 uid="uid://c88b6e1mfqds0"] + +[resource] +sky_top_color = Color(0.167333, 0.162044, 0.423032, 1) +sky_horizon_color = Color(0.390429, 0.285861, 0.305681, 1) +ground_bottom_color = Color(0.0826605, 0.065772, 0.0461518, 1) +ground_horizon_color = Color(0.392157, 0.286275, 0.305882, 1) |