mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-25 05:31:21 +00:00
- Adjust default auto-exposure a bit higher.
This commit is contained in:
parent
982eab2003
commit
37d3b05a85
2 changed files with 3 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
|||
- Adjust default auto-exposure a bit higher.
|
||||
- Added .mtr file support. .mtr files are just .shader files that are accessed first.
|
||||
- Added support for q3gl2_sun shaderparm in sky shaders to control sun shadows
|
||||
- Added r_shadowFilter 0/1/2 for cascaded shadow maps.
|
||||
|
|
|
@ -3245,8 +3245,8 @@ void RE_LoadWorldMap( const char *name ) {
|
|||
VectorNormalize( tr.sunDirection );
|
||||
|
||||
// set default autoexposure settings
|
||||
tr.autoExposureMinMax[0] = -2.0;
|
||||
tr.autoExposureMinMax[1] = 2.0;
|
||||
tr.autoExposureMinMax[0] = -3.0;
|
||||
tr.autoExposureMinMax[1] = 3.0;
|
||||
|
||||
tr.worldMapLoaded = qtrue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue