blender/doc/python_api/examples/bpy.app.handlers.py
2015-09-08 19:42:58 +10:00

15 lines
254 B
Python

"""
Basic Handler Example
+++++++++++++++++++++
This script shows the most simple example of adding a handler.
"""
import bpy
def my_handler(scene):
print("Frame Change", scene.frame_current)
bpy.app.handlers.frame_change_pre.append(my_handler)