Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bpy.app.timers.2.py « examples « python_api « doc - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdd9bf8e9ff9cc532c446ea6456b3a7db64b90bd (plain)
1
2
3
4
5
6
7
8
9
10
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)