bpy.app.timers.1.py 178 B

1234567891011
  1. """
  2. Run a Function in x Seconds
  3. ---------------------------
  4. """
  5. import bpy
  6. def in_5_seconds():
  7. print("Hello World")
  8. bpy.app.timers.register(in_5_seconds, first_interval=5)