diff options
| author | a1xd <[email protected]> | 2021-07-11 21:00:02 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-07-11 21:00:02 -0400 |
| commit | f79209fdc6fe607aab957db8f0d2b0a1adcf3f4b (patch) | |
| tree | 2de6af3e345a21e3b93417fe052af0f019b644a4 /grapher/Models | |
| parent | Small bug fixes (diff) | |
| download | rawaccel-f79209fdc6fe607aab957db8f0d2b0a1adcf3f4b.tar.xz rawaccel-f79209fdc6fe607aab957db8f0d2b0a1adcf3f4b.zip | |
fix args setter from field input
Diffstat (limited to 'grapher/Models')
| -rw-r--r-- | grapher/Models/Options/AccelTypeOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Options/AccelTypeOptions.cs b/grapher/Models/Options/AccelTypeOptions.cs index a8cb469..e5b0fde 100644 --- a/grapher/Models/Options/AccelTypeOptions.cs +++ b/grapher/Models/Options/AccelTypeOptions.cs @@ -315,8 +315,8 @@ namespace grapher if (Acceleration.Visible) args.accelClassic = Acceleration.Field.Data; if (DecayRate.Visible) args.decayRate = DecayRate.Field.Data; - if (GrowthRate.Visible) args.growthRate = DecayRate.Field.Data; - if (Smooth.Visible) args.smooth = DecayRate.Field.Data; + if (GrowthRate.Visible) args.growthRate = GrowthRate.Field.Data; + if (Smooth.Visible) args.smooth = Smooth.Field.Data; if (Scale.Visible) args.scale = Scale.Field.Data; if (Cap.Visible) args.cap = Cap.Field.Data; if (Limit.Visible) args.limit = Limit.Field.Data; |