what callbacks do we have access to?

what callbacks do we have access to?
besides collision?

Nobody know ? What are callbacks and can we do with those ?

http://www.blender.org/api/blender_python_api_2_60_6/bpy.app.handlers.html is this ir or it isn’t?
Or this: http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.60/Python#Callbacks ?

no adrian, that is bpy.

callbacks are event hooks you can link a function to, so it will trigger that code
on the event,

like when ever a object collides or whenever x happens.

There are no callbacks besides the drawing (post_draw, pre_draw and pre_draw_setup), LibLoad (onFinish) and collision callbacks at the moment.

Dang,

I was thinking on add object would be cool (to add items to a managed list)

and end item (remove item from managed list)

I can just use python to spawn and to end objects though,
and it’s the same anyway…