您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
821 B
21 行
821 B
using System;
|
|
|
|
namespace UnityEngine.Rendering.Universal
|
|
{
|
|
[Serializable, VolumeComponentMenu("Post-processing/Split Toning")]
|
|
public sealed class SplitToning : VolumeComponent, IPostProcessComponent
|
|
{
|
|
[Tooltip("The color to use for shadows.")]
|
|
public ColorParameter shadows = new ColorParameter(Color.grey, false, false, true);
|
|
|
|
[Tooltip("The color to use for highlights.")]
|
|
public ColorParameter highlights = new ColorParameter(Color.grey, false, false, true);
|
|
|
|
[Tooltip("Balance between the colors in the highlights and shadows.")]
|
|
public ClampedFloatParameter balance = new ClampedFloatParameter(0f, -100f, 100f);
|
|
|
|
public bool IsActive() => shadows != Color.grey || highlights != Color.grey;
|
|
|
|
public bool IsTileCompatible() => true;
|
|
}
|
|
}
|