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

20 lines
284 B
Python

"""
Run a Function n times every x seconds
--------------------------------------
"""
import bpy
counter = 0
def run_10_times():
global counter
counter += 1
print(counter)
if counter == 10:
return None
return 0.1
bpy.app.timers.register(run_10_times)