#1
|
|||
|
|||
wait for vizproximity and waitKeyDown in task
Hi,
my name is Jeroen and I'm having troubles with waiting inside a viztask. I would like to have to wait for an vizproximity.waitEnter and for an waitKeyDown. If one of them occurs go on, otherwise wait. Code:
d = yield viztask.waitAny(vizproximity.waitEnter([c2Sensor]), viztask.waitKeyDown( ["t"] )) print d pp_pickedCard = '1' card02.addAction( vizact.fadeTo(fadeAmount,time=1) ) TypeError: 'waitEnter' object is not iterable I thought adding viztask. in front of vizproximity would work but that results in: AttributeError: 'module' object has no attribute 'vizproximity' Does anyone have any tips \ pointers \ advise on how I can do this? Thank you! |
#2
|
|||
|
|||
If you place the conditions to wait for in a list it should work:
Code:
yield viztask.waitAny([vizproximity.waitEnter(c2Sensor),viztask.waitKeyDown("t")]) |
#3
|
|||
|
|||
Ah Jeff, thanks for the reply! Monday I'm able to try, but I.m positive this works.
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Key presses, waitKeyDown | javadi | Vizard | 1 | 05-06-2013 10:50 AM |