地图初步

This commit is contained in:
SoulliesOfficial
2026-04-30 07:06:38 -04:00
parent 8ad26129b2
commit 47125f95f4
98 changed files with 2237 additions and 20524 deletions

View File

@@ -36,6 +36,14 @@ namespace Cielonos.MainGame.Effects.Feedback
[Tooltip("开启时,结果叠加在初始值上;关闭时,结果为绝对值")]
public bool relativeToInitial;
public FloatCurveChannel(AnimationCurve curve, float remapMin, float remapMax, bool relativeToInitial)
{
this.curve = curve;
this.remapMin = remapMin;
this.remapMax = remapMax;
this.relativeToInitial = relativeToInitial;
}
/// <summary>
/// 创建默认的曲线通道。
/// </summary>