Added New Mods

Added
- MRAA + Blindside Military Animation Pack
- Dynamic Zone Transitions
- Corpse Twitching
- Artifact Inspection
- Animated Lead Box
This commit is contained in:
2025-01-17 23:53:41 -05:00
parent 2009ca2711
commit fd1ec3a2ba
797 changed files with 20762 additions and 145 deletions
@@ -4,7 +4,7 @@
Link : https://www.moddb.com/mods/stalker-anomaly/addons/shader-3d-scopes
Author : party_50
Date : 01.03.2024
Last Edit : 07.10.2024
Last Edit : 07.01.2025
=====================================================================
--]]
@@ -17,6 +17,7 @@ local ALL_PARAMETERS = {
s3ds_exit_pupil = "float",
s3ds_ffp = "float",
s3ds_reflection_hue = "float",
s3ds_min_zoom_1x = "float",
s3ds_image_type = "float",
@@ -93,6 +94,9 @@ function parse_parameters(wpn)
if not values[key] then
values[key] = parse_key(sight_section, key, type)
end
if not values[key] then
values[key] = parse_key("s3ds_defaults", key, type)
end
end
return values
@@ -110,14 +114,14 @@ function update_shader(wpn)
get_console():execute(
"s3ds_param_1 " ..
get(info, "s3ds_reticle_size", "4") .. ", " ..
get(info, "s3ds_eye_relief", "4") .. ", " ..
get(info, "s3ds_exit_pupil", "0.3") .. ", " ..
get(info, "s3ds_reticle_size", "0") .. ", " ..
get(info, "s3ds_eye_relief", "0") .. ", " ..
get(info, "s3ds_exit_pupil", "0") .. ", " ..
get(info, "s3ds_ffp", "0"))
get_console():execute(
"s3ds_param_2 " ..
"0, " ..
get(info, "s3ds_reflection_hue", "0") .. ", " ..
"0, " ..
get(info, "s3ds_min_zoom_1x", "0") .. ", " ..
(ZOOM_FACTOR or 1.5))
@@ -127,11 +131,11 @@ function update_shader(wpn)
get(info, "s3ds_image_type", "0") .. ", " ..
get(info, "s3ds_reticle_type", "0") .. ", " ..
get(info, "s3ds_dirt_intensity", "0") .. ", " ..
get(info, "s3ds_chroma_power", "0.02"))
get(info, "s3ds_chroma_power", "0"))
get_console():execute(
"s3ds_param_4 " ..
get(info, "s3ds_lens_color", "1, 1, 1") .. ", " ..
get(info, "s3ds_lens_color", "0, 0, 0") .. ", " ..
(NVG_BLUR and 1 or 0))
end