We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 208906a commit 4656b5aCopy full SHA for 4656b5a
engine/Sandbox.Engine/Scene/Components/PostProcessing/Effects/DepthOfField.cs
@@ -22,15 +22,15 @@ public sealed class DepthOfField : BasePostProcess<DepthOfField>
22
/// <summary>
23
/// Game object to keep in focus, leave blank to set focus manually.
24
/// </summary>
25
- [Property, Group( "Target" )]
+ [Property, Group( "Focus" )]
26
public GameObject FocalTarget { get; set; }
27
28
29
/// Offsets the focal distance relative to the FocalTarget.
30
31
[Range( -100, 100, false )]
32
[HideIf( nameof( FocalTarget ), null )]
33
34
public float FocalOffset { get; set; }
35
36
0 commit comments