![]() |
|
#2
|
|||
|
|||
|
Hi,
Can you post the code? viztask should not automatically loop unless you explicitly insert a loop using either the while or for statement. Either way, you can exit a task by simply executing the return statement: Code:
MyTask():
yield viztask.waitTime(1)
return
print 'hello' #This code will not be executed
|
|
|