Scripting in Blender, is it possible to insert an object, wait 1 second, and put a second object? I used the time.sleep(1) (after that the first object has been imported into the scene) but it doesn't work because it put both the objects after 2 seconds. What's the problem??
import time
if x == 3:
bpy.ops.wm.append(directory= ...., filename= .....)
time.sleep(1)
elif x == 2:
bpy.ops.wm.append(directory= ..., filename= .....)