This commit is contained in:
SoulliesOfficial
2026-03-31 07:51:40 -04:00
parent e7d717aad5
commit 25b6da25ae
2054 changed files with 6065 additions and 32945 deletions

View File

@@ -7,7 +7,6 @@ namespace Ichni.RhythmGame
public class VignetteEffect : EffectBase
{
#region [] Effect Parameters
public float duration;
public float peak;
public float smoothness;
public Color color;
@@ -17,10 +16,10 @@ namespace Ichni.RhythmGame
#endregion
#region [] Initialization
public VignetteEffect(float duration, float peak, float smoothness, Color color, AnimationCurve intensityCurve)
: base(duration)
public VignetteEffect(float effectTime, float peak, float smoothness, Color color, AnimationCurve intensityCurve)
: base(effectTime)
{
this.duration = duration;
this.effectTime = effectTime;
this.peak = peak;
this.smoothness = smoothness;
this.color = color;
@@ -70,3 +69,5 @@ namespace Ichni.RhythmGame
}
}