We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8335a commit ed484baCopy full SHA for ed484ba
psychopy/experiment/components/movie/__init__.py
@@ -269,11 +269,8 @@ def writeInitCode(self, buff):
269
buff.writeIndentedLines(code % params)
270
271
def writeInitCodeJS(self, buff):
272
- # If needed then use _writeCreationCodeJS()
273
- # Movie could be created here or in writeRoutineStart()
274
- if self.params['movie'].updates == 'constant':
275
- # create the code using init vals
276
- self._writeCreationCodeJS(buff, useInits=True)
+ # create the code using init vals
+ self._writeCreationCodeJS(buff, useInits=True)
277
278
def writeFrameCode(self, buff):
279
"""Write the code that will be called every frame
0 commit comments