blender/doc/python_api/examples/bpy.app.timers.1.py

13 lines
180 B
Python
Raw Normal View History

"""
Run a Function in x Seconds
---------------------------
"""
import bpy
2019-10-31 23:53:47 +00:00
def in_5_seconds():
print("Hello World")
2019-10-31 23:53:47 +00:00
bpy.app.timers.register(in_5_seconds, first_interval=5)