Files
test/source/blender/blenkernel/intern
Campbell Barton 12e02fd474 own patch [#27752] Python Callback (Scriptlink functionality)
Python:
 * adds bpy.app.handlers which contains lists, each for an event type:
   render_pre, render_post, load_pre, load_post, save_pre, save_post
 * each list item needs to be a callable object which takes 1 argument (the ID).
 * callbacks are cleared on file load.

Example:
 def MyFunc(scene): print("Callback:", data)
 bpy.app.handlers.render_post.append(MyFunc)

C:
 * This patch adds a generic C callback api which is currently only used by python.
 * Unlike python callbacks these are not cleared on file load.
2011-06-24 16:54:30 +00:00
..
2011-06-15 14:06:25 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-05-01 21:39:13 +00:00
2011-06-15 14:06:25 +00:00
2011-06-05 20:54:04 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-05-01 10:14:09 +00:00
2011-02-27 20:40:57 +00:00
2011-06-09 14:27:51 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-02-27 20:40:57 +00:00
2011-04-17 10:05:27 +00:00
2011-05-19 11:54:03 +00:00