Python API Docs: Examples for new timer api

This commit is contained in:
2018-11-27 11:31:35 +01:00
parent 39dcf6a10a
commit dcb86689b0
5 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
"""
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)