This repository was archived by the owner on Nov 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
PostProcessing/Runtime/Models Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public struct Settings
25
25
[ Tooltip ( "Number of sample points, which affects quality and performance." ) ]
26
26
public SampleCount sampleCount ;
27
27
28
- [ Tooltip ( "Halves the resolution of the effect to increase performance." ) ]
28
+ [ Tooltip ( "Halves the resolution of the effect to increase performance at the cost of visual quality ." ) ]
29
29
public bool downsampling ;
30
30
31
31
[ Tooltip ( "Forces compatibility with Forward rendered objects when working with the Deferred rendering path." ) ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public class BloomModel : PostProcessingModel
8
8
[ Serializable ]
9
9
public struct BloomSettings
10
10
{
11
- [ Min ( 0f ) , Tooltip ( "Blend factor of the result image ." ) ]
11
+ [ Min ( 0f ) , Tooltip ( "Strength of the bloom filter ." ) ]
12
12
public float intensity ;
13
13
14
14
[ Min ( 0f ) , Tooltip ( "Filters out pixels under this level of brightness." ) ]
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public struct Settings
26
26
[ Tooltip ( "Maximum average luminance to consider for auto exposure (in EV)." ) ]
27
27
public float maxLuminance ;
28
28
29
- [ Min ( 0f ) , Tooltip ( "Exposure bias. Use this to control the global exposure of the scene." ) ]
29
+ [ Min ( 0f ) , Tooltip ( "Exposure bias. Use this to offset the global exposure of the scene." ) ]
30
30
public float keyValue ;
31
31
32
32
[ Tooltip ( "Set this to true to let Unity handle the key value automatically based on average luminance." ) ]
You can’t perform that action at this time.
0 commit comments