mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-16 06:00:33 +01:00
33 lines
566 B
JSON
33 lines
566 B
JSON
|
{
|
||
|
"primary_ray": {
|
||
|
"rgen": "ray_primary",
|
||
|
"miss": [
|
||
|
"ray_primary"
|
||
|
],
|
||
|
"hit": [
|
||
|
{"closest": "ray_primary"},
|
||
|
{"closest": "ray_primary", "any": "ray_common_alphatest"}
|
||
|
]
|
||
|
},
|
||
|
"light_direct": {
|
||
|
"template": true,
|
||
|
"miss": [
|
||
|
"ray_shadow"
|
||
|
],
|
||
|
"hit": [
|
||
|
{"closest": "ray_shadow", "any": "ray_common_alphatest"}
|
||
|
]
|
||
|
},
|
||
|
"light_direct_poly": {
|
||
|
"inherit": "light_direct",
|
||
|
"rgen": "ray_light_poly_direct"
|
||
|
},
|
||
|
"light_direct_point": {
|
||
|
"inherit": "light_direct",
|
||
|
"rgen": "ray_light_direct_point"
|
||
|
},
|
||
|
"denoiser": {
|
||
|
"comp": "denoiser"
|
||
|
}
|
||
|
}
|