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

@@ -6,7 +6,6 @@ namespace Ichni.RhythmGame
public class CameraZoomEffect : EffectBase
{
#region [] Effect Parameters
public float duration;
public float relativeZoom;
public AnimationCurve zoomCurve;
@@ -15,10 +14,10 @@ namespace Ichni.RhythmGame
#endregion
#region [] Initialization
public CameraZoomEffect(float duration, float relativeZoom, AnimationCurve zoomCurve)
: base(duration)
public CameraZoomEffect(float effectTime, float relativeZoom, AnimationCurve zoomCurve)
: base(effectTime)
{
this.duration = duration;
this.effectTime = effectTime;
this.relativeZoom = relativeZoom;
this.zoomCurve = zoomCurve;
}
@@ -58,3 +57,4 @@ namespace Ichni.RhythmGame
}
}