Changed an init value that prevented function intervals which, if appeared
first in a track, didn't get played.
This commit is contained in:
parent
6ef2d00675
commit
ecc2c11600
|
|
@ -27,7 +27,7 @@ class Interval(DirectObject):
|
|||
self.name = name
|
||||
self.duration = duration
|
||||
self.curr_t = 0.0
|
||||
self.prev_t = 0.0
|
||||
self.prev_t = -1
|
||||
self.stopEventList = []
|
||||
self.setTHooks = []
|
||||
# Set true if interval responds to setT(t): t>duration
|
||||
|
|
|
|||
Loading…
Reference in New Issue