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