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
2018-09-03Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3668
2014-10-28Cleanup: remove redundant 'object' parent classCampbell Barton
2014-04-28Fix T39806: Koro rig (Caminandes) wrong in master, worked in 270(a).Bastien Montagne
Edit existing animsys_refactor module to make able to execute more complex conversions ('to' can now be a callback, instead of a simple prop name), and add a new Update Animated Transform Constraints operator that uses it to handle complex conversion for this constraint (drived or animated properties). Note this operator has to be called manually (from 'space' menu), will make this clear in release notes. Also, similar changes made in 2.70 are *not* addressed by this script (would rather wrote new operators as/if need arise, but Transform constraint looks much more sensible that the others). This op should not remain in more than two or three releases anyway, imho.
2014-02-13Code cleanup: styleCampbell Barton
2013-11-05Code cleanup:Thomas Dinges
* Remove "FCurve/Driver Version fix" from help menu, was used for RNA changes during 2.5x. * Keep utility code in animsys_refactor.py, might still become useful according to Joshua.
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-06-20style cleanupCampbell Barton
2012-01-15weight paint UICampbell Barton
- added back 2.4x 'Vgroup' option to the UI, restricts painting to verts already in the group. - remove 'All Faces' button in weight paint mode. it doesn't do anything.
2012-01-01pep8 editsCampbell Barton
2011-11-19hide overly picky warnings from 'pylint' for pep8 script, indentation edits.Campbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-23- move animsys update operator into the anim.pyCampbell Barton
- move the data into animsys_refactor.py module so its not loaded on blender start.
2011-03-27pep8 cleanupCampbell Barton
2011-03-27fix (own bug) [#26628] "FCurve/Driver Version Fix" Incorrectly Clobbers ↵Campbell Barton
Array Indexing also escape strings properly now.
2011-03-27Bugfixes due to recent RNA renaming:Joshua Leung
* Driver F-Curves were not getting fixed by the "FCurve/Driver Version Fix" tool. This was causing problems such as shapekey drivers from older (2.56 compatible rigs) failing to run. As well as renaming the paths for these Driver F-Curves, the "disabled" flags also get cleared from these drivers so that they can be run again * "Revive Disabled F-Curves" operator in Animation Editors can now be used to revive disabled drivers too.
2011-01-01pep8 cleanupCampbell Barton
2010-10-15nodes were being ignored by api update script.Campbell Barton
2010-08-20rna data path names which are more likely to break animations.Campbell Barton
Added an operator "Update Animation Data", access from the search menu to update drivers and fcurves.
2010-08-18utility function for updating animation system values when RNA changes.Campbell Barton
- any numnber of attributes are supported for renaming, eg: modifiers["Foo.Bar"].prop.bar - the path is resolved in blender so each attribute is type checked against the naming list. - inherited properties are supported by recursively checking parent classes names aganst the name list. - fcurves and drivers are currently supported.