Files
test2/source/blender/blenkernel
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-05-01 21:39:13 +00:00
2011-06-05 20:54:04 +00:00
2011-03-07 11:51:09 +00:00
2011-03-12 02:12:02 +00:00
2011-04-29 04:43:36 +00:00
2011-05-27 23:33:40 +00:00