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,11 @@
"""
Run a Function every x Seconds
------------------------------
"""
import bpy
def every_2_seconds():
print("Hello World")
return 2
bpy.app.timers.register(every_2_seconds)