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

13 lines
180 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)