blender/doc/python_api/examples/bpy.app.timers.1.py
2019-11-01 10:53:47 +11:00

13 lines
180 B
Python

"""
Run a Function in x Seconds
---------------------------
"""
import bpy
def in_5_seconds():
print("Hello World")
bpy.app.timers.register(in_5_seconds, first_interval=5)