Hi guys,
Let's say I want to do this:
for i in range(10):
print(str(i))
time.sleep(0.5)
In the Photoscan Python console I get an output of all "print" functions once the complete loop is finished, ie after 10*0.5 seconds. Is there a way to force refresh the console after every iteration like a normal python console ?
Kind regards,