blender/doc/python_api/examples/bpy.app.timers.1.py
2018-11-27 11:31:48 +01:00

11 lines
178 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)