summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-19 20:56:59 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-19 20:56:59 +0100
commita522fd19b165cb2a5337ff0f54821cfc5ae85f58 (patch)
tree2f15db34c5935588ff80b807c114264dfef765ba /cli
parent5d5d778df8e6d84814013a6dcbf506dde7600f14 (diff)
easing functions
Diffstat (limited to 'cli')
-rw-r--r--cli/app/search/live.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index 1fd3ddf..722df89 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -100,7 +100,7 @@ class SinParam:
orbit_speed = InterpolatorParam(name=name + '_speed', value=FPS, smooth=True)
orbit_time = InterpolatorParam(name=name + '_time', value=0.0)
if lerp:
- noise = LerpParam(name + '_noise', shape=shape, datatype=datatype, ease=easing.LinearInOut)
+ noise = LerpParam(name + '_noise', shape=shape, datatype=datatype, ease=easing.CubicEaseInOut)
noise_out = noise.output
else:
noise = InterpolatorParam(name + '_noise_a', shape=shape, datatype=datatype)