summaryrefslogtreecommitdiff
path: root/cli/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-18 17:35:57 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-18 17:35:57 +0100
commit297a2e3015b3a89876d745004fbc80aad8e05483 (patch)
tree9db190de676a59dd17eeecf12b381186b45ca36e /cli/app
parent934db0f43803e4b1a16ed0bc43d7719076a0a463 (diff)
parameter smoothing
Diffstat (limited to 'cli/app')
-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 389ece4..7ddef61 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -120,7 +120,7 @@ class SinParam:
# - check if we've done one full orbital period
# - check if the noise is done transitioning
if self.lerp and self.t >= self.orbit_speed.value and self.noise.n.value == 0 or self.noise.n.value == 1:
- self.noise.randomize()
+ self.noise.switch()
self.t = 0
class LerpParam: