File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
16
16
17
17
### Changed
18
18
- Warning for mobiles about using post-processing with non-fullscreen cameras.
19
+ - Directly to Camera Target on the PostProcessLayer component is now disabled by default.
19
20
20
21
## [ 2.1.6] - 2019-04-11
21
22
Original file line number Diff line number Diff line change @@ -75,7 +75,13 @@ public enum Antialiasing
75
75
/// avoid post-processing artifacts cause by broken data in the scene.
76
76
/// </summary>
77
77
public bool stopNaNPropagation = true ;
78
- public bool finalBlitToCameraTarget = true ;
78
+
79
+ /// <summary>
80
+ /// If <c>true</c>, it will render straight to the backbuffer and save the final blit done
81
+ /// by the engine. This has less overhead and will improve performance on lower-end platforms
82
+ /// (like mobiles) but breaks compatibility with legacy image effect that use OnRenderImage.
83
+ /// </summary>
84
+ public bool finalBlitToCameraTarget = false ;
79
85
80
86
/// <summary>
81
87
/// The anti-aliasing method to use for this camera. By default it's set to <c>None</c>.
You can’t perform that action at this time.
0 commit comments