|
1 | 1 | # Depth of Field
|
2 | 2 |
|
3 |
| -**Depth of Field** is a common post-processing effect that simulates the focus properties of a camera lens. In real life, a camera can only focus sharply on an object at a specific distance; objects nearer or farther from the camera will be somewhat out of focus. The blurring not only gives a visual cue about an object’s distance but also introduces Bokeh which is the term for pleasing visual artifacts that appear around bright areas of the image as they fall out of focus. |
4 |
| - |
5 |
| - |
6 |
| - |
7 |
| - |
| 3 | +**Depth of Field** is a post-processing effect that simulates the focus properties of a camera lens. To learn more about the Depth of Field effect, see the [Depth of Field](https://docs.unity3d.com/Manual/PostProcessing-DepthOfField.html) documentation in the Unity manual. |
8 | 4 |
|
9 | 5 |
|
10 | 6 | 
|
|
14 | 10 |
|
15 | 11 | | Property | Function |
|
16 | 12 | | :-------------- | :------------------------------------------------------------ |
|
17 |
| -| Focus Distance | Distance to the point of focus. | |
18 |
| -| Aperture | Ratio of the aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is. | |
19 |
| -| Focal Length | Distance between the lens and the film. The larger the value is, the shallower the depth of field is. | |
20 |
| -| Max Blur Size | Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects the performance (the larger the kernel is, the longer the GPU time is required). | |
| 13 | +| Focus Distance | Set the distance to the point of focus. | |
| 14 | +| Aperture | Set the ratio of the aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is. | |
| 15 | +| Focal Length | Set the distance between the lens and the film. The larger the value is, the shallower the depth of field is. | |
| 16 | +| Max Blur Size | Select the convolution kernel size of the bokeh filter from the dropdown. This setting determines the maximum radius of bokeh. It also affects the performance (the larger the kernel is, the longer the GPU time is required). | |
21 | 17 |
|
22 |
| -### Performances |
| 18 | +### Performance |
23 | 19 |
|
24 |
| -The speed of Depth of Field is tied to `Max Blur Size`. Using a value higher than `Medium` is only recommended for desktop computers and, depending on the post-processing budget of your game, consoles. Mobile platforms should stick to the lowest value. |
| 20 | +The speed of Depth of Field is tied to `Max Blur Size`. Only use a value higher than `Medium` if you are developing for desktop computers and, depending on the post-processing budget of your game, consoles. Use the lowest value when developing for mobile platforms. |
25 | 21 |
|
26 | 22 | ### Requirements
|
27 | 23 |
|
28 | 24 | - Depth texture
|
29 | 25 | - Shader Model 3.5
|
30 | 26 |
|
31 |
| -See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. |
| 27 | +See the [Graphics Hardware Capabilities and Emulation](https://docs.unity3d.com/Manual/GraphicsEmulation.html) page for further details and a list of compliant hardware. |
0 commit comments