Bezi回来了

This commit is contained in:
SoulliesOfficial
2026-04-28 15:46:32 -04:00
parent 7379583165
commit 0902ca8a9e
56 changed files with 3285 additions and 3803 deletions

View File

@@ -14,73 +14,53 @@ namespace Cielonos.MainGame.Effects.Feedback
{
public override string DisplayName => "Vignette";
public FloatCurveChannel intensityCurve = FloatCurveChannel.CreateDefault(remapMax: 1f);
/// <summary>
/// 是否修改暗角中心点。
/// </summary>
[LabelText("修改中心点")]
public bool modifyCenter;
/// <summary>
/// 模糊中心的屏幕坐标 (0-1)。(0.5, 0.5) 为屏幕正中心。
/// </summary>
[HideIf("modifyCenter")]
[LabelText("中心点")]
public Vector2 center = new Vector2(0.5f, 0.5f);
[ShowIf("modifyCenter")]
[LabelText("中心点曲线")]
public Vector2CurveChannel centerCurve = Vector2CurveChannel.CreateDefault();
/// <summary>
/// 是否修改颜色。
/// </summary>
[LabelText("修改颜色")]
public bool modifyColors;
[HideIf("modifyColors")]
public Color outColor;
[HideIf("modifyColors")]
public Color innerColor;
/// <summary>
/// 外圈颜色。
/// </summary>
[ShowIf("modifyColors")]
[LabelText("外圈颜色")]
public Color outColor = Color.black;
[HideIf("modifyColors")]
[LabelText("内圈颜色")]
public Color innerColor = Color.black;
[ShowIf("modifyColors")]
[LabelText("外圈颜色曲线")]
public ColorCurveChannel outerColorCurve = ColorCurveChannel.CreateDefault();
/// <summary>
/// 内圈颜色。
/// </summary>
[ShowIf("modifyColors")]
[LabelText("内圈颜色")]
[LabelText("内圈颜色曲线")]
public ColorCurveChannel innerColorCurve = ColorCurveChannel.CreateDefault();
/// <summary>
/// 是否修改形状。
/// </summary>
[LabelText("修改形状")]
public bool modifyShape;
[HideIf("modifyShape")]
public float smoothness;
[LabelText("柔和度")]
public float smoothness = 0.5f;
[HideIf("modifyShape")]
public float roundness;
[LabelText("圆度")]
public float roundness = 1f;
/// <summary>
/// 柔和度曲线。
/// </summary>
[ShowIf("modifyShape")]
[LabelText("柔和度曲线")]
public FloatCurveChannel smoothnessCurve = FloatCurveChannel.CreateDefault(remapMax: 0.5f);
/// <summary>
/// 圆度曲线。
/// </summary>
[ShowIf("modifyShape")]
[LabelText("圆度曲线")]
public FloatCurveChannel roundnessCurve = FloatCurveChannel.CreateDefault(remapMax: 1f);
@@ -91,13 +71,18 @@ namespace Cielonos.MainGame.Effects.Feedback
context,
intensityCurve,
modifyCenter,
center,
modifyCenter ? centerCurve : default,
modifyCenter ? center : default(Vector2),
modifyColors,
outerColorCurve,
innerColorCurve,
modifyColors ? outerColorCurve : default,
modifyColors ? innerColorCurve : default,
modifyColors ? outColor : default,
modifyColors ? innerColor : default,
modifyShape,
smoothnessCurve,
roundnessCurve
modifyShape ? smoothnessCurve : default,
modifyShape ? roundnessCurve : default,
modifyShape ? smoothness : 0f,
modifyShape ? roundness : 0f
);
}