blender/release/scripts
Campbell Barton da1765765b many operators uses Bases, for the python to set operators context python too needs to be able to access bases.
- added scene.bases (like scene.objects)
- renamed group create operator.

Example
 scene = bpy.data.scenes[0]
 C = {}
 C["scene"] = scene
 C["selected_editable_bases"] = [scene.bases[2], scene.bases[3]]
 
 bpy.ops.group.create(C)


Also made operator fake modules not return __call__ (reported by Stani, fixes autocomp. bug)
2009-11-02 11:14:22 +00:00
..
io vertex paint script ported by - Keith "Wahooney" Boshoff 2009-11-02 09:26:55 +00:00
modules many operators uses Bases, for the python to set operators context python too needs to be able to access bases. 2009-11-02 11:14:22 +00:00
templates make python operator instances subclasses of the wmOperator when called. 2009-11-02 08:32:00 +00:00
ui Spline IK Experimental Features: 2009-11-02 10:04:37 +00:00