summaryrefslogtreecommitdiff
path: root/cli/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-20 00:55:49 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-20 00:55:49 +0100
commita4171fbbc68d4b57515dec6365cf066387544572 (patch)
tree7570b9715ae61a42c7489ec5627155ed10f9e261 /cli/app
parent2a5c2db780be76b444632050aeb82e76cb4d489d (diff)
easing functions
Diffstat (limited to 'cli/app')
-rw-r--r--cli/app/search/live.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index d21a59b..27662b0 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -123,11 +123,9 @@ class SinParam:
# randomize the orbit when possible -
# - 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.switch()
- self.t = 0
- """
+ # if self.lerp and self.t >= self.orbit_speed.value and self.noise.n.value == 0 or self.noise.n.value == 1:
+ # self.noise.switch()
+ # self.t = 0
class LerpParam:
def __init__(self, name, shape, a_in=None, b_in=None, datatype="noise", ease=easing.QuadEaseInOut):