Skip to content

Added scene view camera documentation #975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Scene view camera

The High Definition Render Pipeline (HDRP) includes extra customization options for the [Scene view Camera](https://docs.unity3d.com/Manual/SceneViewCamera.html) settings menu. You can use these properties to configure HDRP specific camera features.

For information on the Scene view Camera settings menu and how to use it, see the [Scene view Camera documentation](https://docs.unity3d.com/Manual/SceneViewCamera.html).

## Properties

| **Property** | **Description** |
| ------------------------ | ------------------------------------------------------------ |
| **Camera Anti-aliasing** | Specifies the method the Scene view Camera uses for post-process anti-aliasing. The options are:<br/>&#8226; **No Anti-aliasing**: This Camera can process MSAA but does not process any post-process anti-aliasing.<br/>&#8226; **Fast Approximate Anti-aliasing** (FXAA): Smooths edges on a per-pixel level. This is the least resource-intensive anti-aliasing technique in HDRP.<br/>&#8226; **Temporal Anti-aliasing** (TAA): Uses frames from a history buffer to smooth edges more effectively than fast approximate anti-aliasing.<br/>&#8226; **Subpixel Morphological Anti-aliasing** (SMAA): Finds patterns in borders of the image and blends the pixels on these borders according to the pattern. |
| **Camera Stop NaNs** | Makes the Scene view Camera replace values that are not a number (NaN) with a black pixel. This stops certain effects from breaking but is a resource-intensive process. |
| **Override Exposure** | Specifies whether to override the scene's exposure with a specific value. |
| - Scene Exposure | The exposure value the Scene view Camera uses to override the scene's exposure.<br/>This property only appears when you enable **Override Exposure**. |
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
* [Physical Light Units and Intensities](Physical-Light-Units)
* Camera
* [HD Camera](HDRP-Camera)
* [Scene View Camera](Scene-View-Camera.md)
* [Dynamic Resolution](Dynamic-Resolution)
* [Motion Vectors](Motion-Vectors)
* [Anti-Aliasing](Anti-Aliasing)
Expand Down