Post #2298: Cool, almost there : post_02301
🏷️ Tags
python-scripting intermediate unsolved
⚙️ Related PME Features
- Python Scripting
- Overlay
💬 Content
Cool, almost there 
For some reason, when you run below code, the overlay is displayed only once, at the last item of the loop. Why is that? Or how to workaround that?
for i in range (0,10): bpy.ops.pme.overlay(text=str(i), alignment='TOP', duration=2, offset_x=10, offset_y=30); time.sleep(0.5)
roaoao:
Use
bpy.opsinstead ofOin console.