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: a8ce7fde552e0d30630bd43d9e55e7290323a99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
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)