Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2007-12-17Reverting to 2_2x BPYMartin Poirier
I was careful in selectively rolling back revisions, but if you've committed changes unrelated to BPY mixed with BPY changes, I might have reverted those too, so please double check.
2007-03-15removed duplicate functionality, macro's and functions existed to check a ↵Campbell Barton
PyObjects type, now only use macro's
2006-12-28Made it possible to copy modifiers from the python APICampbell Barton
ob1.modifiers = ob2.modifiers
2006-09-24Extra generic errors for Scene, Groups and Metaballs to raise errors when ↵Campbell Barton
trying to do anything with a python objects thats had its data removed in Blender. Added to existing scn.objects scn.objects.active (get/set the active object for the scene) scn.objects.selected - an iterator that only uses selected objects scn.objects.context - an iterator on objects in the user context (visible in the current 3d views layer and selected) These are the same type as scn.objects but .add() .remove() .new() .active etc raise errors. so scn.objects.selected.add() will raise an error. Made nested loops possible with scn.objects, metaball.elements and ob.modifiers, by initializing the iter value as NULL and creating copys of the pyobject when _getIter() is called if ->iter is not NULL. This is how pythons xrange() works.
2006-06-14===Python API===Ken Hughes
Moved .up() and .down() methods from Modifier API to Modifier sequence API (also renamed them to moveUp() and moveDown() ). Locating methods which modify the "parent" structure in objects didn't seem consistent.
2006-04-23===Python API===Ken Hughes
More Modifier API changes: * add Blender.Modifier.Settings dict with constants for modifier types * add mod.type attribute, which returns type of the Modifier * add some internal consistency checks in ModSeq_remove
2006-04-23added remove to the modifier seq (when pymodifier->md is NULL then its been ↵Campbell Barton
removed) added name to the docs
2006-04-23===Python API===Ken Hughes
Initial commit for new Modifier API. Probably does about 70-75% of what it should, but it's a start.