Files
workinf_Blender_Wasm/blender-5.2.0/doc/python_api/examples/bpy.app.timers.2.py
2026-08-12 04:47:48 -04:00

14 lines
189 B
Python

"""
Run a Function every x Seconds
------------------------------
"""
import bpy
def every_2_seconds():
print("Hello World")
return 2.0
bpy.app.timers.register(every_2_seconds)