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

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