This repository was archived by the owner on Nov 30, 2020. It is now read-only.
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.
1616
1717### Changed
1818- 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.
1920
2021## [ 2.1.6] - 2019-04-11
2122
Original file line number Diff line number Diff line change @@ -75,7 +75,13 @@ public enum Antialiasing
7575 /// avoid post-processing artifacts cause by broken data in the scene.
7676 /// </summary>
7777 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 ;
7985
8086 /// <summary>
8187 /// 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