diff --git a/Assets/Scripts/Support/ParticleTrailController.cs b/Assets/Scripts/Support/ParticleTrailController.cs index 028890f..33c08f2 100644 --- a/Assets/Scripts/Support/ParticleTrailController.cs +++ b/Assets/Scripts/Support/ParticleTrailController.cs @@ -59,7 +59,10 @@ public class ParticleTrailController : MonoBehaviour var velocityOverLifetime = effect.velocityOverLifetime; velocityOverLifetime.enabled = true; - velocityOverLifetime.radial = new ParticleSystem.MinMaxCurve(-30, 30); + velocityOverLifetime.space = ParticleSystemSimulationSpace.Local; + velocityOverLifetime.x = new ParticleSystem.MinMaxCurve(-30, 30); + velocityOverLifetime.y = new ParticleSystem.MinMaxCurve(0, 0); + velocityOverLifetime.z = new ParticleSystem.MinMaxCurve(30, -30); break; } case ParticleTrail.SlightBlood: