forked from bartvdbraak/blender
f086201518
remove unneeded collection length function.
14 lines
253 B
Python
14 lines
253 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)
|