MariENB 1.2015.8.8
This commit is contained in:
parent
f365cc957f
commit
debcab1f89
12 changed files with 256 additions and 256 deletions
|
|
@ -54,7 +54,7 @@ float4 PS_BloomPrePass(VS_OUTPUT_POST In) : COLOR
|
|||
res.rgb = hsv2rgb(hsv);
|
||||
res = max(res+bloombump,0);
|
||||
hsv = rgb2hsv(res.rgb);
|
||||
hsv.y *= bloomsaturation;
|
||||
hsv.y = clamp(hsv.y*bloomsaturation,0.0,1.0);
|
||||
hsv.z = pow(hsv.z,bloompower);
|
||||
res.rgb = hsv2rgb(hsv)*bloomintensity;
|
||||
res.a = 1.0;
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ float3 GradingHSV( float3 res )
|
|||
float gradevalpow = lerp(lerp(gradevalpow_n,gradevalpow_d,tod),
|
||||
lerp(gradevalpow_in,gradevalpow_id,tod),ind);
|
||||
float3 hsv = rgb2hsv(res);
|
||||
hsv.y = pow(hsv.y,gradesatpow)*gradesatmul;
|
||||
hsv.y = clamp(pow(hsv.y,gradesatpow)*gradesatmul,0.0,1.0);
|
||||
hsv.z = pow(hsv.z,gradevalpow)*gradevalmul;
|
||||
return hsv2rgb(hsv);
|
||||
}
|
||||
|
|
@ -318,8 +318,8 @@ float4 PS_Mari( VS_OUTPUT_POST IN, float2 vPos : VPOS ) : COLOR
|
|||
if ( tmapenable && !tmapbeforecomp ) res.rgb = Tonemap(res.rgb);
|
||||
if ( bloomdebug ) res.rgb *= 0;
|
||||
res.rgb += tex2D(_s3,coord).rgb*EBloomAmount;
|
||||
if ( tintbeforegrade && tintenable ) res.rgb = Tint(res.rgb);
|
||||
if ( vgradeenable ) res.rgb = GradingGame(res.rgb);
|
||||
if ( tintbeforegrade && tintenable ) res.rgb = Tint(res.rgb);
|
||||
if ( gradeenable1 ) res.rgb = GradingRGB(res.rgb);
|
||||
if ( colorizeafterhsv )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ float3 hsv2rgb( float3 c )
|
|||
float4 ReducePrepass( in float4 col, in float2 coord )
|
||||
{
|
||||
float3 hsv = rgb2hsv(col);
|
||||
hsv.y *= bsaturation;
|
||||
hsv.y = clamp(hsv.y*bsaturation,0.0,1.0);
|
||||
hsv.z = pow(hsv.z,bgamma);
|
||||
col.rgb = hsv2rgb(saturate(hsv));
|
||||
if ( dither == 0 )
|
||||
|
|
|
|||
|
|
@ -27,10 +27,10 @@ DetectorLevelCurve=0.6
|
|||
|
||||
[ADAPTATION]
|
||||
ForceMinMaxValues=true
|
||||
AdaptationSensitivity=0.25
|
||||
AdaptationTime=1.5
|
||||
AdaptationMin=0.35
|
||||
AdaptationMax=1.25
|
||||
AdaptationSensitivity=0.34
|
||||
AdaptationTime=1.44
|
||||
AdaptationMin=0.41
|
||||
AdaptationMax=1.16
|
||||
|
||||
[BLOOM]
|
||||
Quality=1
|
||||
|
|
@ -142,12 +142,12 @@ GradientHorizonIntensityNight=0.9
|
|||
GradientHorizonCurveDay=1.0
|
||||
GradientHorizonCurveNight=0.9
|
||||
|
||||
SunIntensity=2.0
|
||||
SunIntensity=4.0
|
||||
SunDesaturation=0.0
|
||||
SunCoronaIntensity=0.001
|
||||
SunCoronaCurve=1.0
|
||||
SunCoronaDesaturation=0.0
|
||||
MoonIntensity=2.0
|
||||
MoonIntensity=3.0
|
||||
MoonCurve=1.0
|
||||
MoonDesaturation=0.0
|
||||
MoonCoronaIntensity=0.001
|
||||
|
|
@ -160,4 +160,4 @@ DetailedShadowQuality=1
|
|||
ShadowDesaturation=0.8
|
||||
|
||||
[RAYS]
|
||||
SunRaysMultiplier=1.2
|
||||
SunRaysMultiplier=1.25
|
||||
|
|
|
|||
|
|
@ -1,30 +1,30 @@
|
|||
[ENBBLOOM.FX]
|
||||
TECHNIQUE=0
|
||||
BloomRadius=1.0
|
||||
BloomMix1=0.43
|
||||
BloomMix2=0.59
|
||||
BloomMix3=0.71
|
||||
BloomMix4=0.96
|
||||
BloomMix7=1.2
|
||||
BloomMix8=1.33
|
||||
BloomMix1=0.89
|
||||
BloomMix2=0.75
|
||||
BloomMix3=0.66
|
||||
BloomMix4=0.51
|
||||
BloomMix7=0.45
|
||||
BloomMix8=0.36
|
||||
BloomMixNoBlur=0.0
|
||||
BloomMixBaseImage=0.0
|
||||
BloomIntensityNight=0.96
|
||||
BloomIntensityDay=0.89
|
||||
BloomIntensityInteriorNight=0.96
|
||||
BloomIntensityInteriorDay=0.92
|
||||
BloomPowerNight=1.02
|
||||
BloomPowerDay=1.01
|
||||
BloomPowerInteriorNight=1.03
|
||||
BloomPowerInteriorDay=1.02
|
||||
BloomSaturationNight=0.83
|
||||
BloomSaturationDay=0.91
|
||||
BloomSaturationInteriorNight=0.87
|
||||
BloomSaturationInteriorDay=0.93
|
||||
BloomBumpNight=-0.12
|
||||
BloomBumpDay=-0.2
|
||||
BloomIntensityNight=1.12
|
||||
BloomIntensityDay=1.09
|
||||
BloomIntensityInteriorNight=1.15
|
||||
BloomIntensityInteriorDay=1.13
|
||||
BloomPowerNight=0.73
|
||||
BloomPowerDay=0.83
|
||||
BloomPowerInteriorNight=0.72
|
||||
BloomPowerInteriorDay=0.78
|
||||
BloomSaturationNight=1.05
|
||||
BloomSaturationDay=1.03
|
||||
BloomSaturationInteriorNight=1.07
|
||||
BloomSaturationInteriorDay=1.04
|
||||
BloomBumpNight=-0.13
|
||||
BloomBumpDay=-0.23
|
||||
BloomBumpInteriorNight=-0.09
|
||||
BloomBumpInteriorDay=-0.16
|
||||
BloomBumpInteriorDay=-0.12
|
||||
BloomCapNight=100.0
|
||||
BloomCapDay=100.0
|
||||
BloomCapInteriorNight=100.0
|
||||
|
|
@ -46,10 +46,10 @@ BlueShiftIntensityDay=0.34
|
|||
BlueShiftIntensityInteriorNight=0.48
|
||||
BlueShiftIntensityInteriorDay=0.38
|
||||
EnableAnamorphicBloom=true
|
||||
AnamBlendNight=0.88
|
||||
AnamBlendDay=0.72
|
||||
AnamBlendInteriorNight=0.91
|
||||
AnamBlendInteriorDay=0.83
|
||||
AnamBlendNight=0.45
|
||||
AnamBlendDay=0.38
|
||||
AnamBlendInteriorNight=0.53
|
||||
AnamBlendInteriorDay=0.42
|
||||
AnamBlueShiftColorNightRed=0.35
|
||||
AnamBlueShiftColorNightGreen=0.08
|
||||
AnamBlueShiftColorNightBlue=1.0
|
||||
|
|
@ -66,27 +66,27 @@ AnamBlueShiftIntensityNight=1.22
|
|||
AnamBlueShiftIntensityDay=1.13
|
||||
AnamBlueShiftIntensityInteriorNight=1.57
|
||||
AnamBlueShiftIntensityInteriorDay=1.34
|
||||
AnamPowerNight=1.11
|
||||
AnamPowerDay=1.15
|
||||
AnamPowerInteriorNight=1.09
|
||||
AnamPowerInteriorDay=1.12
|
||||
AnamPowerNight=1.19
|
||||
AnamPowerDay=1.28
|
||||
AnamPowerInteriorNight=1.17
|
||||
AnamPowerInteriorDay=1.23
|
||||
AnamLengthMultiplier=4.0
|
||||
BloomAngle=0.0
|
||||
BloomVertical=false
|
||||
BloomHQBlur=false
|
||||
EnableLensDirt=true
|
||||
DirtMix1=0.21
|
||||
DirtMix2=0.47
|
||||
DirtMix3=0.88
|
||||
DirtMix4=1.86
|
||||
DirtMix7=2.8
|
||||
DirtMix8=6.06
|
||||
DirtMix1=0.16
|
||||
DirtMix2=0.29
|
||||
DirtMix3=0.66
|
||||
DirtMix4=0.86
|
||||
DirtMix7=1.51
|
||||
DirtMix8=7.06
|
||||
DirtMixNoBlur=0.0
|
||||
DirtMixBaseImage=0.0
|
||||
DirtPreserveAspect=true
|
||||
DirtDiffraction=0.67
|
||||
DirtBumpPower=1.34
|
||||
DirtPower=0.82
|
||||
DirtFactor=0.369999
|
||||
DirtDiffraction=0.69
|
||||
DirtBumpPower=1.47
|
||||
DirtPower=0.57
|
||||
DirtFactor=0.519999
|
||||
BlueShiftLuminanceFactorPass=0.44
|
||||
BlueShiftColorFactorPass=0.83
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ UseBox=false
|
|||
BoxVertical=0.8
|
||||
UseGrain=true
|
||||
GrainFrequency=2500.0
|
||||
GrainIntensity=0.03
|
||||
GrainIntensity=0.05
|
||||
GrainSaturation=0.33
|
||||
GrainTwoPass=true
|
||||
GrainBlend=3
|
||||
|
|
@ -36,57 +36,57 @@ GrainPower=1.74
|
|||
UseCurve=false
|
||||
CurveChromaAberration=0.03
|
||||
UseAdaptation=true
|
||||
AdaptationMinNight=0.31
|
||||
AdaptationMinDay=0.53
|
||||
AdaptationMinInteriorNight=0.25
|
||||
AdaptationMinInteriorDay=0.38
|
||||
AdaptationMaxNight=1.03
|
||||
AdaptationMaxDay=1.28
|
||||
AdaptationMaxInteriorNight=1.18
|
||||
AdaptationMaxInteriorDay=1.21
|
||||
AdaptationMinNight=0.37
|
||||
AdaptationMinDay=0.54
|
||||
AdaptationMinInteriorNight=0.37
|
||||
AdaptationMinInteriorDay=0.41
|
||||
AdaptationMaxNight=1.08
|
||||
AdaptationMaxDay=1.19
|
||||
AdaptationMaxInteriorNight=1.04
|
||||
AdaptationMaxInteriorDay=1.08
|
||||
UseTonemapping=true
|
||||
TonemapHighlightStrengthNight=0.85
|
||||
TonemapHighlightStrengthDay=0.82
|
||||
TonemapHighlightStrengthInteriorNight=0.89
|
||||
TonemapHighlightStrengthInteriorDay=0.8
|
||||
TonemapHighlightGammaNight=0.92
|
||||
TonemapHighlightGammaDay=0.95
|
||||
TonemapHighlightGammaInteriorNight=0.93
|
||||
TonemapHighlightGammaInteriorDay=0.96
|
||||
TonemapHighlightStrengthNight=0.91
|
||||
TonemapHighlightStrengthDay=0.89
|
||||
TonemapHighlightStrengthInteriorNight=0.93
|
||||
TonemapHighlightStrengthInteriorDay=0.88
|
||||
TonemapHighlightGammaNight=0.58
|
||||
TonemapHighlightGammaDay=0.52
|
||||
TonemapHighlightGammaInteriorNight=0.5
|
||||
TonemapHighlightGammaInteriorDay=0.49
|
||||
TonemapMidtoneStrengthNight=0.19
|
||||
TonemapMidtoneStrengthDay=0.17
|
||||
TonemapMidtoneStrengthInteriorNight=0.19
|
||||
TonemapMidtoneStrengthInteriorDay=0.18
|
||||
TonemapMidtoneGammaNight=0.55
|
||||
TonemapMidtoneGammaDay=0.57
|
||||
TonemapMidtoneGammaInteriorNight=0.58
|
||||
TonemapMidtoneGammaInteriorDay=0.61
|
||||
TonemapMidtoneStrengthInteriorDay=0.17
|
||||
TonemapMidtoneGammaNight=0.62
|
||||
TonemapMidtoneGammaDay=0.64
|
||||
TonemapMidtoneGammaInteriorNight=0.64
|
||||
TonemapMidtoneGammaInteriorDay=0.68
|
||||
TonemapShadowStrengthNight=0.02
|
||||
TonemapShadowStrengthDay=0.03
|
||||
TonemapShadowStrengthInteriorNight=0.04
|
||||
TonemapShadowStrengthInteriorDay=0.03
|
||||
TonemapShadowGammaNight=0.41
|
||||
TonemapShadowGammaDay=0.54
|
||||
TonemapShadowGammaInteriorNight=0.57
|
||||
TonemapShadowGammaInteriorDay=0.65
|
||||
TonemapShadowGammaNight=0.65
|
||||
TonemapShadowGammaDay=0.6
|
||||
TonemapShadowGammaInteriorNight=0.68
|
||||
TonemapShadowGammaInteriorDay=0.63
|
||||
TonemapWhiteNight=7.579999
|
||||
TonemapWhiteDay=10.26
|
||||
TonemapWhiteInteriorNight=4.57
|
||||
TonemapWhiteInteriorDay=7.86
|
||||
TonemapBeforeCompensate=false
|
||||
TonemapWhiteInteriorNight=4.79
|
||||
TonemapWhiteInteriorDay=7.57
|
||||
TonemapBeforeCompensate=true
|
||||
UseCompensate=true
|
||||
CompensateFactorNight=0.18
|
||||
CompensateFactorDay=0.14
|
||||
CompensateFactorInteriorNight=0.15
|
||||
CompensateFactorInteriorDay=0.13
|
||||
CompensatePowerNight=1.13
|
||||
CompensatePowerDay=1.08
|
||||
CompensatePowerInteriorNight=1.15
|
||||
CompensatePowerInteriorDay=1.13
|
||||
CompensateSaturationNight=1.07
|
||||
CompensateSaturationDay=1.03
|
||||
CompensateSaturationInteriorNight=1.09
|
||||
CompensateSaturationInteriorDay=1.06
|
||||
CompensatePowerNight=1.26
|
||||
CompensatePowerDay=1.21
|
||||
CompensatePowerInteriorNight=1.27
|
||||
CompensatePowerInteriorDay=1.25
|
||||
CompensateSaturationNight=1.22
|
||||
CompensateSaturationDay=1.23
|
||||
CompensateSaturationInteriorNight=1.21
|
||||
CompensateSaturationInteriorDay=1.18
|
||||
UseRGBGrading=true
|
||||
GradingMulRNight=1.17
|
||||
GradingMulGNight=1.08
|
||||
|
|
@ -100,12 +100,12 @@ GradingMulBInteriorNight=1.04
|
|||
GradingMulRInteriorDay=1.16
|
||||
GradingMulGInteriorDay=1.08
|
||||
GradingMulBInteriorDay=1.05
|
||||
GradingPowRNight=0.99
|
||||
GradingPowRNight=1.03
|
||||
GradingPowGNight=0.96
|
||||
GradingPowBNight=0.95
|
||||
GradingPowRDay=1.03
|
||||
GradingPowBNight=0.92
|
||||
GradingPowRDay=1.0
|
||||
GradingPowGDay=0.98
|
||||
GradingPowBDay=0.8
|
||||
GradingPowBDay=0.87
|
||||
GradingPowRInteriorNight=1.02
|
||||
GradingPowGInteriorNight=0.96
|
||||
GradingPowBInteriorNight=0.81
|
||||
|
|
@ -113,31 +113,31 @@ GradingPowRInteriorDay=1.01
|
|||
GradingPowGInteriorDay=0.95
|
||||
GradingPowBInteriorDay=0.89
|
||||
UseColorizeGrading=true
|
||||
GradingColRNight=-0.47
|
||||
GradingColRNight=-0.9
|
||||
GradingColGNight=-0.28
|
||||
GradingColBNight=-0.2
|
||||
GradingColRDay=-0.54
|
||||
GradingColGDay=-0.32
|
||||
GradingColBDay=-0.12
|
||||
GradingColRInteriorNight=-0.32
|
||||
GradingColRDay=-0.74
|
||||
GradingColGDay=-0.23
|
||||
GradingColBDay=-0.13
|
||||
GradingColRInteriorNight=-0.91
|
||||
GradingColGInteriorNight=-0.19
|
||||
GradingColBInteriorNight=-0.37
|
||||
GradingColRInteriorDay=-0.49
|
||||
GradingColRInteriorDay=-0.84
|
||||
GradingColGInteriorDay=-0.26
|
||||
GradingColBInteriorDay=-0.17
|
||||
GradingColFactorNight=-0.15
|
||||
GradingColFactorDay=-0.21
|
||||
GradingColFactorDay=-0.19
|
||||
GradingColFactorInteriorNight=-0.15
|
||||
GradingColFactorInteriorDay=-0.2
|
||||
GradingColFactorInteriorDay=-0.19
|
||||
UseHSVGrading=true
|
||||
GradingSatMulNight=1.12
|
||||
GradingSatMulDay=1.19
|
||||
GradingSatMulInteriorNight=1.13
|
||||
GradingSatMulInteriorDay=1.24
|
||||
GradingSatPowNight=1.26
|
||||
GradingSatPowDay=1.19
|
||||
GradingSatPowInteriorNight=1.2
|
||||
GradingSatPowInteriorDay=1.22
|
||||
GradingSatMulNight=1.32
|
||||
GradingSatMulDay=1.24
|
||||
GradingSatMulInteriorNight=1.43
|
||||
GradingSatMulInteriorDay=1.45
|
||||
GradingSatPowNight=1.18
|
||||
GradingSatPowDay=1.09
|
||||
GradingSatPowInteriorNight=1.11
|
||||
GradingSatPowInteriorDay=1.07
|
||||
GradingValMulNight=1.17
|
||||
GradingValMulDay=1.09
|
||||
GradingValMulInteriorNight=1.12
|
||||
|
|
@ -149,7 +149,7 @@ GradingValPowInteriorDay=1.14
|
|||
ColorizeAfterHSV=true
|
||||
UseTint=true
|
||||
TintingBlend=1.0
|
||||
TintingBeforeGrading=false
|
||||
TintingBeforeGrading=true
|
||||
EnableVanillaGrading=true
|
||||
VanillaGradingBlend=1.0
|
||||
FadeBeforeFilmFilters=false
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ EdgeFadeMultiplierNight=700.0
|
|||
EdgeFadeMultiplierDay=800.0
|
||||
EdgeFadeMultiplierInteriorNight=700.0
|
||||
EdgeFadeMultiplierInteriorDay=800.0
|
||||
EdgePower=0.35
|
||||
EdgePower=0.5
|
||||
EdgeMultiplier=2.0
|
||||
SSAOEnable=false
|
||||
SSAORadius=0.25
|
||||
|
|
@ -102,7 +102,7 @@ HeatSize=1.27
|
|||
HeatSpeed=1.2
|
||||
HeatFadePower=319.76001
|
||||
HeatFadeMultiplier=1.16
|
||||
HeatStrength=0.62
|
||||
HeatStrength=0.85
|
||||
HeatAlways=false
|
||||
HeatPower=1.64
|
||||
UnderwaterMult1=1.44
|
||||
|
|
@ -140,17 +140,17 @@ DoFFixedUnfocusedBumpNight=0.0
|
|||
DoFFixedUnfocusedBumpDay=0.0
|
||||
DoFFixedUnfocusedBumpInteriorNight=0.0
|
||||
DoFFixedUnfocusedBumpInteriorDay=0.0
|
||||
EdgeRadius=0.05
|
||||
EdgeRadius=1.0
|
||||
SSAOMinDepth=0.0
|
||||
SSAOMaxDepth=0.5
|
||||
SSAOClamp=0.5
|
||||
DebugFocus=false
|
||||
EdgeThreshold=0.25
|
||||
EdgeThreshold=1.0
|
||||
DebugEdge=false
|
||||
CelEnable=false
|
||||
CelRadius=1.0
|
||||
CelMultiplier=4.0
|
||||
CelPower=0.75
|
||||
CelMultiplier=1.5
|
||||
CelPower=0.5
|
||||
DebugCel=false
|
||||
EdgeViewEnable=false
|
||||
EdgeViewFadePowerNight=1.82
|
||||
|
|
|
|||
|
|
@ -163,19 +163,19 @@ DirectLightingDesaturationInteriorDay=0.08
|
|||
DirectLightingDesaturationInteriorNight=0.24
|
||||
SpecularAmountMultiplierSunrise=1.31
|
||||
SpecularAmountMultiplierSunset=1.36
|
||||
SpecularAmountMultiplierInteriorDay=1.21
|
||||
SpecularAmountMultiplierInteriorNight=1.43
|
||||
SpecularAmountMultiplierInteriorDay=1.31
|
||||
SpecularAmountMultiplierInteriorNight=1.5
|
||||
SpecularPowerMultiplierSunrise=0.961
|
||||
SpecularPowerMultiplierSunset=0.891
|
||||
SpecularPowerMultiplierInteriorDay=0.961
|
||||
SpecularPowerMultiplierInteriorNight=1.141
|
||||
SpecularPowerMultiplierInteriorDay=0.851
|
||||
SpecularPowerMultiplierInteriorNight=0.941
|
||||
SpecularFromLightSunrise=0.0
|
||||
SpecularFromLightSunset=0.0
|
||||
SpecularFromLightInteriorDay=0.0
|
||||
SpecularFromLightInteriorNight=0.0
|
||||
AmbientLightingIntensitySunrise=0.23
|
||||
AmbientLightingIntensitySunset=0.26
|
||||
AmbientLightingIntensityInteriorDay=0.29
|
||||
AmbientLightingIntensityInteriorDay=0.25
|
||||
AmbientLightingIntensityInteriorNight=0.22
|
||||
AmbientLightingCurveSunrise=1.18
|
||||
AmbientLightingCurveSunset=1.28
|
||||
|
|
@ -219,8 +219,8 @@ PointLightingCurveInteriorDay=1.09
|
|||
PointLightingCurveInteriorNight=1.13
|
||||
PointLightingDesaturationSunrise=0.25
|
||||
PointLightingDesaturationSunset=0.2
|
||||
PointLightingDesaturationInteriorDay=0.38
|
||||
PointLightingDesaturationInteriorNight=0.3
|
||||
PointLightingDesaturationInteriorDay=0.2
|
||||
PointLightingDesaturationInteriorNight=0.17
|
||||
ParticleLightsIntensitySunrise=1.02
|
||||
ParticleLightsIntensityDay=0.84
|
||||
ParticleLightsIntensitySunset=1.1
|
||||
|
|
@ -398,12 +398,12 @@ SubSurfaceScatteringMultiplierDay=0.11
|
|||
SubSurfaceScatteringMultiplierNight=0.09
|
||||
SubSurfaceScatteringMultiplierInterior=0.0
|
||||
SubSurfaceScatteringPowerDay=0.92
|
||||
SubSurfaceScatteringPowerNight=1.03
|
||||
SubSurfaceScatteringPowerNight=1.05
|
||||
SubSurfaceScatteringPowerInterior=1.1
|
||||
SubSurfaceScatteringMultiplierSunrise=0.2
|
||||
SubSurfaceScatteringMultiplierSunset=0.23
|
||||
SubSurfaceScatteringMultiplierInteriorDay=0.13
|
||||
SubSurfaceScatteringMultiplierInteriorNight=0.11
|
||||
SubSurfaceScatteringMultiplierInteriorDay=0.27
|
||||
SubSurfaceScatteringMultiplierInteriorNight=0.31
|
||||
SubSurfaceScatteringPowerSunrise=0.84
|
||||
SubSurfaceScatteringPowerSunset=0.73
|
||||
SubSurfaceScatteringPowerInteriorDay=0.82
|
||||
|
|
@ -413,14 +413,14 @@ SpecularAmountMultiplierSunrise=1.41
|
|||
SpecularAmountMultiplierDay=1.3
|
||||
SpecularAmountMultiplierSunset=1.51
|
||||
SpecularAmountMultiplierNight=1.66
|
||||
SpecularAmountMultiplierInteriorDay=1.3
|
||||
SpecularAmountMultiplierInteriorNight=1.5
|
||||
SpecularAmountMultiplierInteriorDay=1.56
|
||||
SpecularAmountMultiplierInteriorNight=1.78
|
||||
SpecularPowerMultiplierSunrise=0.82
|
||||
SpecularPowerMultiplierDay=1.04
|
||||
SpecularPowerMultiplierDay=1.03
|
||||
SpecularPowerMultiplierSunset=0.77
|
||||
SpecularPowerMultiplierNight=0.6
|
||||
SpecularPowerMultiplierInteriorDay=0.94
|
||||
SpecularPowerMultiplierInteriorNight=0.66
|
||||
SpecularPowerMultiplierInteriorDay=0.75
|
||||
SpecularPowerMultiplierInteriorNight=0.54
|
||||
|
||||
[LIGHTSPRITE]
|
||||
IntensityDay=0.53
|
||||
|
|
@ -664,31 +664,31 @@ SubSurfaceScatteringPowerNight=0.52
|
|||
SubSurfaceScatteringPowerInteriorDay=0.79
|
||||
SubSurfaceScatteringPowerInteriorNight=0.55
|
||||
IgnoreWeatherSystem=true
|
||||
SpecularAmountMultiplierSunrise=1.52
|
||||
SpecularAmountMultiplierDay=1.3
|
||||
SpecularAmountMultiplierSunset=1.74
|
||||
SpecularAmountMultiplierNight=1.93
|
||||
SpecularAmountMultiplierInteriorDay=1.53
|
||||
SpecularAmountMultiplierInteriorNight=1.73
|
||||
SpecularPowerMultiplierSunrise=0.92
|
||||
SpecularPowerMultiplierDay=1.18
|
||||
SpecularPowerMultiplierSunset=0.82
|
||||
SpecularPowerMultiplierNight=0.73
|
||||
SpecularPowerMultiplierInteriorDay=1.12
|
||||
SpecularPowerMultiplierInteriorNight=0.82
|
||||
SpecularAmountMultiplierSunrise=2.26
|
||||
SpecularAmountMultiplierDay=2.14
|
||||
SpecularAmountMultiplierSunset=2.32
|
||||
SpecularAmountMultiplierNight=2.24
|
||||
SpecularAmountMultiplierInteriorDay=2.26
|
||||
SpecularAmountMultiplierInteriorNight=2.34
|
||||
SpecularPowerMultiplierSunrise=0.77
|
||||
SpecularPowerMultiplierDay=0.87
|
||||
SpecularPowerMultiplierSunset=0.75
|
||||
SpecularPowerMultiplierNight=0.68
|
||||
SpecularPowerMultiplierInteriorDay=0.79
|
||||
SpecularPowerMultiplierInteriorNight=0.6
|
||||
|
||||
[SUBSURFACESCATTERING]
|
||||
Quality=1
|
||||
Radius=1.98
|
||||
Amount=0.66
|
||||
EpidermalAmount=0.93
|
||||
SubdermalAmount=0.87
|
||||
EpidermalDiffuseSaturation=-0.6
|
||||
SubdermalDiffuseSaturation=0.13
|
||||
EpidermalMix=0.22
|
||||
SubdermalMix=0.29
|
||||
SubdermalTranslucency=0.89
|
||||
SubdermalPhase=0.71
|
||||
Radius=2.17
|
||||
Amount=0.72
|
||||
EpidermalAmount=0.91
|
||||
SubdermalAmount=0.85
|
||||
EpidermalDiffuseSaturation=-0.21
|
||||
SubdermalDiffuseSaturation=-0.09
|
||||
EpidermalMix=0.85
|
||||
SubdermalMix=0.36
|
||||
SubdermalTranslucency=0.93
|
||||
SubdermalPhase=0.83
|
||||
IgnoreWeatherSystem=true
|
||||
EnableTextureAlpha=true
|
||||
|
||||
|
|
|
|||
|
|
@ -24,4 +24,4 @@ EnableChromaKey=false
|
|||
ChromaKeyRed=0.0
|
||||
ChromaKeyGreen=1.0
|
||||
ChromaKeyBlue=0.0
|
||||
ChromaKeyDepth=0.9
|
||||
ChromaKeyDepth=0.8
|
||||
|
|
|
|||
|
|
@ -1,30 +1,30 @@
|
|||
[ENBBLOOM.FX]
|
||||
TECHNIQUE=0
|
||||
BloomRadius=1.0
|
||||
BloomMix1=0.29
|
||||
BloomMix2=0.42
|
||||
BloomMix3=0.65
|
||||
BloomMix4=0.74
|
||||
BloomMix7=0.88
|
||||
BloomMix8=1.26
|
||||
BloomMix1=0.83
|
||||
BloomMix2=0.73
|
||||
BloomMix3=0.62
|
||||
BloomMix4=0.47
|
||||
BloomMix7=0.39
|
||||
BloomMix8=0.22
|
||||
BloomMixNoBlur=0.0
|
||||
BloomMixBaseImage=0.0
|
||||
BloomIntensityNight=0.96
|
||||
BloomIntensityDay=0.93
|
||||
BloomIntensityInteriorNight=1.02
|
||||
BloomIntensityInteriorDay=0.98
|
||||
BloomPowerNight=1.04
|
||||
BloomPowerDay=1.01
|
||||
BloomPowerInteriorNight=1.06
|
||||
BloomPowerInteriorDay=1.03
|
||||
BloomSaturationNight=0.79
|
||||
BloomSaturationDay=0.75
|
||||
BloomSaturationInteriorNight=0.83
|
||||
BloomSaturationInteriorDay=0.78
|
||||
BloomBumpNight=-0.42
|
||||
BloomBumpDay=-0.48
|
||||
BloomBumpInteriorNight=-0.39
|
||||
BloomBumpInteriorDay=-0.43
|
||||
BloomIntensityNight=1.03
|
||||
BloomIntensityDay=1.0
|
||||
BloomIntensityInteriorNight=1.04
|
||||
BloomIntensityInteriorDay=1.02
|
||||
BloomPowerNight=0.76
|
||||
BloomPowerDay=0.84
|
||||
BloomPowerInteriorNight=0.74
|
||||
BloomPowerInteriorDay=0.79
|
||||
BloomSaturationNight=1.07
|
||||
BloomSaturationDay=1.03
|
||||
BloomSaturationInteriorNight=1.09
|
||||
BloomSaturationInteriorDay=1.06
|
||||
BloomBumpNight=-0.17
|
||||
BloomBumpDay=-0.26
|
||||
BloomBumpInteriorNight=-0.16
|
||||
BloomBumpInteriorDay=-0.05
|
||||
BloomCapNight=100.0
|
||||
BloomCapDay=100.0
|
||||
BloomCapInteriorNight=100.0
|
||||
|
|
@ -41,15 +41,15 @@ BlueShiftColorInteriorNightBlue=1.0
|
|||
BlueShiftColorInteriorDayRed=0.3
|
||||
BlueShiftColorInteriorDayGreen=0.7
|
||||
BlueShiftColorInteriorDayBlue=1.0
|
||||
BlueShiftIntensityNight=0.63
|
||||
BlueShiftIntensityDay=0.53
|
||||
BlueShiftIntensityInteriorNight=0.72
|
||||
BlueShiftIntensityInteriorDay=0.59
|
||||
BlueShiftIntensityNight=0.39
|
||||
BlueShiftIntensityDay=0.29
|
||||
BlueShiftIntensityInteriorNight=0.37
|
||||
BlueShiftIntensityInteriorDay=0.19
|
||||
EnableAnamorphicBloom=true
|
||||
AnamBlendNight=0.59
|
||||
AnamBlendDay=0.54
|
||||
AnamBlendInteriorNight=0.65
|
||||
AnamBlendInteriorDay=0.57
|
||||
AnamBlendNight=0.46
|
||||
AnamBlendDay=0.32
|
||||
AnamBlendInteriorNight=0.54
|
||||
AnamBlendInteriorDay=0.43
|
||||
AnamBlueShiftColorNightRed=0.35
|
||||
AnamBlueShiftColorNightGreen=0.08
|
||||
AnamBlueShiftColorNightBlue=1.0
|
||||
|
|
@ -62,31 +62,31 @@ AnamBlueShiftColorInteriorNightBlue=1.0
|
|||
AnamBlueShiftColorInteriorDayRed=0.21
|
||||
AnamBlueShiftColorInteriorDayGreen=0.42
|
||||
AnamBlueShiftColorInteriorDayBlue=1.0
|
||||
AnamBlueShiftIntensityNight=4.44
|
||||
AnamBlueShiftIntensityDay=3.21
|
||||
AnamBlueShiftIntensityInteriorNight=5.88
|
||||
AnamBlueShiftIntensityInteriorDay=4.03
|
||||
AnamPowerNight=1.05
|
||||
AnamPowerDay=1.11
|
||||
AnamPowerInteriorNight=1.03
|
||||
AnamPowerInteriorDay=1.08
|
||||
AnamBlueShiftIntensityNight=1.35
|
||||
AnamBlueShiftIntensityDay=1.26
|
||||
AnamBlueShiftIntensityInteriorNight=1.54
|
||||
AnamBlueShiftIntensityInteriorDay=1.32
|
||||
AnamPowerNight=1.18
|
||||
AnamPowerDay=1.29
|
||||
AnamPowerInteriorNight=1.17
|
||||
AnamPowerInteriorDay=1.73
|
||||
AnamLengthMultiplier=4.0
|
||||
BloomAngle=0.0
|
||||
BloomVertical=false
|
||||
BloomHQBlur=false
|
||||
EnableLensDirt=false
|
||||
DirtMix1=0.15
|
||||
DirtMix2=0.25
|
||||
DirtMix3=0.32
|
||||
DirtMix4=0.75
|
||||
DirtMix7=1.4
|
||||
DirtMix8=3.39
|
||||
DirtMix1=0.08
|
||||
DirtMix2=0.14
|
||||
DirtMix3=0.24
|
||||
DirtMix4=0.52
|
||||
DirtMix7=1.12
|
||||
DirtMix8=6.87
|
||||
DirtMixNoBlur=0.0
|
||||
DirtMixBaseImage=0.0
|
||||
DirtPreserveAspect=true
|
||||
DirtDiffraction=0.82
|
||||
DirtDiffraction=0.67
|
||||
DirtBumpPower=1.21
|
||||
DirtPower=0.43
|
||||
DirtFactor=0.509999
|
||||
BlueShiftLuminanceFactorPass=0.18
|
||||
BlueShiftColorFactorPass=0.32
|
||||
DirtPower=0.92
|
||||
DirtFactor=0.319999
|
||||
BlueShiftLuminanceFactorPass=0.44
|
||||
BlueShiftColorFactorPass=0.84
|
||||
|
|
|
|||
|
|
@ -39,40 +39,40 @@ UseAdaptation=true
|
|||
AdaptationMinNight=0.52
|
||||
AdaptationMinDay=0.57
|
||||
AdaptationMinInteriorNight=0.49
|
||||
AdaptationMinInteriorDay=0.52
|
||||
AdaptationMinInteriorDay=0.49
|
||||
AdaptationMaxNight=1.06
|
||||
AdaptationMaxDay=1.11
|
||||
AdaptationMaxInteriorNight=1.04
|
||||
AdaptationMaxInteriorDay=1.08
|
||||
UseTonemapping=true
|
||||
TonemapHighlightStrengthNight=0.67
|
||||
TonemapHighlightStrengthDay=0.57
|
||||
TonemapHighlightStrengthInteriorNight=0.86
|
||||
TonemapHighlightStrengthInteriorDay=0.69
|
||||
TonemapHighlightGammaNight=0.92
|
||||
TonemapHighlightGammaDay=0.88
|
||||
TonemapHighlightGammaInteriorNight=0.93
|
||||
TonemapHighlightGammaInteriorDay=0.88
|
||||
TonemapMidtoneStrengthNight=0.21
|
||||
TonemapMidtoneStrengthDay=0.2
|
||||
TonemapMidtoneStrengthInteriorNight=0.22
|
||||
TonemapMidtoneStrengthInteriorDay=0.21
|
||||
TonemapMidtoneGammaNight=0.66
|
||||
TonemapMidtoneGammaDay=0.57
|
||||
TonemapMidtoneGammaInteriorNight=0.66
|
||||
TonemapMidtoneGammaInteriorDay=0.57
|
||||
TonemapHighlightStrengthNight=0.89
|
||||
TonemapHighlightStrengthDay=0.83
|
||||
TonemapHighlightStrengthInteriorNight=0.91
|
||||
TonemapHighlightStrengthInteriorDay=0.84
|
||||
TonemapHighlightGammaNight=0.81
|
||||
TonemapHighlightGammaDay=0.76
|
||||
TonemapHighlightGammaInteriorNight=0.77
|
||||
TonemapHighlightGammaInteriorDay=0.74
|
||||
TonemapMidtoneStrengthNight=0.19
|
||||
TonemapMidtoneStrengthDay=0.18
|
||||
TonemapMidtoneStrengthInteriorNight=0.18
|
||||
TonemapMidtoneStrengthInteriorDay=0.17
|
||||
TonemapMidtoneGammaNight=0.77
|
||||
TonemapMidtoneGammaDay=0.65
|
||||
TonemapMidtoneGammaInteriorNight=0.76
|
||||
TonemapMidtoneGammaInteriorDay=0.69
|
||||
TonemapShadowStrengthNight=0.04
|
||||
TonemapShadowStrengthDay=0.02
|
||||
TonemapShadowStrengthInteriorNight=0.04
|
||||
TonemapShadowStrengthInteriorDay=0.03
|
||||
TonemapShadowGammaNight=0.69
|
||||
TonemapShadowGammaDay=0.55
|
||||
TonemapShadowGammaInteriorNight=0.64
|
||||
TonemapShadowGammaInteriorDay=0.42
|
||||
TonemapWhiteNight=7.579999
|
||||
TonemapWhiteDay=10.26
|
||||
TonemapWhiteInteriorNight=4.57
|
||||
TonemapWhiteInteriorDay=8.0
|
||||
TonemapShadowGammaNight=0.77
|
||||
TonemapShadowGammaDay=0.66
|
||||
TonemapShadowGammaInteriorNight=0.75
|
||||
TonemapShadowGammaInteriorDay=0.67
|
||||
TonemapWhiteNight=7.039999
|
||||
TonemapWhiteDay=9.150001
|
||||
TonemapWhiteInteriorNight=6.29
|
||||
TonemapWhiteInteriorDay=7.09
|
||||
TonemapBeforeCompensate=false
|
||||
UseCompensate=true
|
||||
CompensateFactorNight=0.28
|
||||
|
|
@ -82,10 +82,10 @@ CompensateFactorInteriorDay=0.22
|
|||
CompensatePowerNight=1.32
|
||||
CompensatePowerDay=1.28
|
||||
CompensatePowerInteriorNight=1.38
|
||||
CompensatePowerInteriorDay=1.32
|
||||
CompensatePowerInteriorDay=1.3
|
||||
CompensateSaturationNight=1.11
|
||||
CompensateSaturationDay=1.07
|
||||
CompensateSaturationInteriorNight=1.14
|
||||
CompensateSaturationInteriorNight=1.13
|
||||
CompensateSaturationInteriorDay=1.12
|
||||
UseRGBGrading=true
|
||||
GradingMulRNight=1.17
|
||||
|
|
@ -109,43 +109,43 @@ GradingPowBDay=0.95
|
|||
GradingPowRInteriorNight=1.02
|
||||
GradingPowGInteriorNight=0.96
|
||||
GradingPowBInteriorNight=0.91
|
||||
GradingPowRInteriorDay=0.96
|
||||
GradingPowGInteriorDay=0.95
|
||||
GradingPowBInteriorDay=0.94
|
||||
GradingPowRInteriorDay=0.95
|
||||
GradingPowGInteriorDay=0.96
|
||||
GradingPowBInteriorDay=0.98
|
||||
UseColorizeGrading=true
|
||||
GradingColRNight=-0.8
|
||||
GradingColGNight=-0.24
|
||||
GradingColBNight=-0.55
|
||||
GradingColRDay=-0.54
|
||||
GradingColRNight=-0.92
|
||||
GradingColGNight=-0.16
|
||||
GradingColBNight=-0.12
|
||||
GradingColRDay=-0.84
|
||||
GradingColGDay=-0.32
|
||||
GradingColBDay=-0.12
|
||||
GradingColRInteriorNight=-0.58
|
||||
GradingColGInteriorNight=-0.19
|
||||
GradingColBInteriorNight=-0.22
|
||||
GradingColRInteriorDay=-0.95
|
||||
GradingColGInteriorDay=-0.16
|
||||
GradingColBInteriorDay=-0.24
|
||||
GradingColFactorNight=-0.18
|
||||
GradingColFactorDay=-0.18
|
||||
GradingColFactorInteriorNight=-0.15
|
||||
GradingColFactorInteriorDay=-0.25
|
||||
GradingColRInteriorNight=-1.17
|
||||
GradingColGInteriorNight=-0.15
|
||||
GradingColBInteriorNight=-0.05
|
||||
GradingColRInteriorDay=-0.9
|
||||
GradingColGInteriorDay=-0.3
|
||||
GradingColBInteriorDay=-0.12
|
||||
GradingColFactorNight=-0.26
|
||||
GradingColFactorDay=-0.22
|
||||
GradingColFactorInteriorNight=-0.31
|
||||
GradingColFactorInteriorDay=-0.35
|
||||
UseHSVGrading=true
|
||||
GradingSatMulNight=1.25
|
||||
GradingSatMulDay=1.25
|
||||
GradingSatMulInteriorNight=1.29
|
||||
GradingSatMulInteriorDay=1.24
|
||||
GradingSatMulNight=1.36
|
||||
GradingSatMulDay=1.27
|
||||
GradingSatMulInteriorNight=1.44
|
||||
GradingSatMulInteriorDay=1.46
|
||||
GradingSatPowNight=1.16
|
||||
GradingSatPowDay=1.09
|
||||
GradingSatPowInteriorNight=1.15
|
||||
GradingSatPowInteriorDay=1.12
|
||||
GradingSatPowInteriorNight=1.13
|
||||
GradingSatPowInteriorDay=1.06
|
||||
GradingValMulNight=1.11
|
||||
GradingValMulDay=1.06
|
||||
GradingValMulInteriorNight=1.12
|
||||
GradingValMulInteriorDay=1.09
|
||||
GradingValPowNight=1.05
|
||||
GradingValPowDay=1.08
|
||||
GradingValPowInteriorNight=1.07
|
||||
GradingValPowInteriorDay=1.14
|
||||
GradingValPowInteriorNight=1.05
|
||||
GradingValPowInteriorDay=1.13
|
||||
ColorizeAfterHSV=true
|
||||
UseTint=true
|
||||
TintingBlend=1.0
|
||||
|
|
|
|||
|
|
@ -82,11 +82,11 @@ SSAOFadeMultiplierNight=2.01
|
|||
SSAOFadeMultiplierDay=2.47
|
||||
SSAOFadeMultiplierInteriorNight=2.06
|
||||
SSAOFadeMultiplierInteriorDay=2.17
|
||||
SSAOMultiplier=1.25
|
||||
SSAOMultiplier=1.0
|
||||
SSAOPower=1.5
|
||||
SSAOBlend=1.0
|
||||
SSAOBlurEnable=true
|
||||
SSAOBilateralFactor=10000.0
|
||||
SSAOBilateralFactor=200.0
|
||||
SSAOClampFactor=0.1
|
||||
SSAOBlurRadius=1.0
|
||||
DebugSSAO=false
|
||||
|
|
@ -139,7 +139,7 @@ DoFFixedUnfocusedBumpDay=0.0
|
|||
DoFFixedUnfocusedBumpInteriorNight=0.0
|
||||
DoFFixedUnfocusedBumpInteriorDay=0.0
|
||||
EdgeRadius=0.01
|
||||
SSAOClamp=0.5
|
||||
SSAOClamp=0.15
|
||||
EdgeThreshold=0.01
|
||||
EdgeViewEnable=false
|
||||
EdgeViewFadePowerNight=1.82
|
||||
|
|
|
|||
Reference in a new issue