OS : Win10
PsychoPy version :2020.2.5
Standard Standalone? Yes
What are you trying to achieve?:
Continue the experiment after finish a loop.
I have written this in the End Rutine part:
score.append(key_resp_2.corr)
scorr+=key_resp_2.corr
thisExp.addData(‘Score’,score)
if (average(score) >= 0.95 and scorr >= 10):
trial.finished = True
I don’t know how to force the program to continue with the experiment.
Thanks for the help!