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